-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.04 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 = "zk_pass"
version = "0.1.0"
edition = "2021"
[dependencies]
# General dependencies
async-trait = "0.1.74"
dotenv = "0.15.0"
hex = "0.4.3"
lazy_static = "1.4.0"
once_cell = "1.18.0"
prost = "0.12.1"
prost-types = "0.12.1"
serde = { version = "1.0.186", features = ["derive"] }
serde_json = "1.0.105"
tokio = { version = "1", features = ["full"] }
tonic = "0.10.2"
parking_lot = "0.12.1"
uuid = { version = "1.5.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
chrono = "0.4"
cron = "0.12.0"
structopt = "0.3.26"
strum = { version = "0.25.0", features = ["derive"] }
log = "0.4"
env_logger = "0.9"
# Number theory dependencies
num-bigint = { version = "0.4", features = ["rand"] }
num-primes = "0.3.0"
num-traits = "0.2.17"
rand = "0.8.5"
# Elliptic curve dependencies
curve25519-dalek = { version = "4.0.0", features = ["digest", "rand_core", "serde", "group"] }
rand_core = "0.6.4"
sha2 = "0.10.8"
pasta_curves = "0.5.1"
bellman = "0.14.0"
pairing = "0.23.0"
[build-dependencies]
tonic-build = "0.10.2"
[dev-dependencies]
criterion = "0.3"