-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "moonboard_api"
version = "0.1.0"
authors = ["Robin Ole Heinemann <[email protected]>"]
edition = "2018"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "*", features = ["derive"] }
serde_json = "*"
reqwest = { version = "*", features = ["json", "gzip"] }
failure = "*"
tokio = { version = "*", features = ["macros", "rt-threaded"] }
chrono = { version = "*", features = ["serde"] }
uuid = { version = "*", features = ["serde"] }
env_logger = "*"
log = "*"
epochs = "*"
dotenv = "*"
serde_urlencoded = "*"
rgb = "*"
bincode = "*"
openssl = { version = "*", features = ["vendored"] }
# tmp
glob = "*"
sqlx = { version = "*", default-features= false, features = [ "runtime-tokio", "macros", "sqlite", "chrono"], git = "https://github.com/launchbadge/sqlx" }
sqlx-helper = { version = "*", path = "sqlx-helper" }
android_logger = "*"
log-panics = "*"
jni-sys = "*"
futures-util = "*"
[profile.release]
lto = true
[build-dependencies]
rust_swig = "*"
env_logger = "*"
[lib]
name = "moonboard"
crate-type = ["cdylib", "rlib"]