-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (42 loc) · 1.14 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
47
48
[package]
name = "uog"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "uog"
crate-type = ["cdylib"]
path = "src/lib.rs"
#required-features = ["build-lib"]
[[bin]]
name = "uog"
path = "src/main.rs"
[[bin]]
name = "uniffi"
path = "uniffi.rs"
[dependencies]
tokio = { version = "1.35.1", features = ["full"] }
log = "0.4.20"
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "cargo"] }
env_logger = "0.8.4"
#serde = { version = "1.0", features = ["derive"] }
#serde_json = "1.0"
#rand = "0.8"
tonic = { version = "0.12.3", features = ["tls", "tls-native-roots"] }
prost = "0.13.3"
#h2 = "0.4.6"
tokio-stream = "0.1.16"
uniffi = { version = "0.28.2", features = ["cli"] }
rustls-platform-verifier = { version = "0.3" }
tower = "0.4.13"
hyper-util = "0.1.9"
hyper-rustls = { version = "0.27.3", features = ["http2"] }
rustls = "0.23.11"
aws-lc-sys = { version = "0.23.1", features = ["bindgen"]}
jni = "0.19.0"
#[features]
#build-lib = ["aws-lc-sys"]
[build-dependencies]
tonic-build = "0.12.3"
uniffi = { version = "0.28.2", features = ["build"] }