-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 877 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
32
33
[package]
name = "zgdatestharness"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.77"
tokio = { version = "1.35.1", features = ["full", "sync"] }
futures = "0.3.30"
prost = "0.12.3"
tonic = { version = "0.10.2", features = ["gzip", "tls", "tls-roots", "tls-roots-common", "tls-webpki-roots"] }
tonic-build = "0.10.2"
prometheus = "0.13.3"
prometheus_exporter = "0.8.5"
clap = { version = "4.4.18", default-features = false, features = ["std", "derive", "help", "usage", "env"] }
governor = "0.6.0"
nonzero_ext = "0.3.0"
hex = "0.4"
rand = "0.8"
[build-dependencies]
tonic-build = "0.10.2"
anyhow = "1.0.79"
[dev-dependencies]
borsh = { version = "1.3.1" }
rand = "0.8.5"
rand_distr = "0.4.3"
rand_pcg = "0.3.1"
ed25519-dalek = "2.1.0"