-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (28 loc) · 936 Bytes
/
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
[package]
name = "helium-config-service-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
angry-purple-tiger = { version = "1", features = ["helium_crypto"]}
anyhow = "1.0.71"
dialoguer = "0.10.2"
clap = { version = "4.2.7", features = ["derive", "env"] }
futures = "0.3.28"
helium-crypto = "0.6.9"
helium-proto = { git = "https://github.com/helium/proto", branch="master", features=["services"]}
h3o = "0"
ipnet = "2.7.2"
prost = "0.11.9"
rand = "0.8.5"
serde = { version = "1.0.162", features = ["derive"] }
serde_json = "1.0.96"
serde_test = "1.0.162"
tokio = { version = "1.28.0", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.14"
tonic = { version = "0.9.2", features = ["tls", "tls-roots"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
[dev-dependencies]
pretty_assertions = "1.3.0"
temp-dir = "0.1.11"