-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 858 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
[package]
name = "zkauth-client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zkauth-protobuf = { path = "../zkauth-protobuf", features = ["full"] }
zkauth = { path = "../zkauth" }
anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["env", "derive"] }
clap-verbosity-flag = "2.2.0"
log = "0.4.21"
env_logger = "0.11.2"
num-bigint = { version = "0.4.4", features = ["rand"] }
num-traits = "0.2.18"
rand = "0.8.5"
tokio = { version = "1.36.0", features = ["full"] }
tokio-stream = "0.1.14"
tonic = "0.11.0"
curve25519-dalek = { version = "4.1.2", features = ["digest", "rand_core"] }
[dev-dependencies]
zkauth-server = { path = "../zkauth-server" }
tower = "0.4.13"
tonic = "0.11.0"
assert_cmd = "2.0.14"
predicates = "3.1.0"
wait-timeout = "0.2.0"