-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 823 Bytes
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
[package]
name = "node"
version = "0.3.0"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
blstrs = "0.7.1"
clap = { version = "4.6.0", features = ["derive", "env"] }
crypto = { path = "crypto" }
curve25519-dalek = "4.1.3"
ed25519-dalek = "2.2.0"
ff = "0.13.1"
futures = "0.3.32"
group = "0.13.0"
hyper = "1.9.0"
memmap2 = "0.9.10"
oid-registry = "0.8.1"
p256 = "0.13.2"
primitive-types = "0.14.0"
prost = "0.14.3"
prost-types = "0.14.3"
rustls = "0.23.37"
serde_json = "1.0.149"
sha3 = "0.11.0"
time = "0.3.47"
tokio = { version = "1.51.0", features = ["full", "test-util"] }
tokio-rustls = "0.26.4"
tokio-util = "0.7.18"
tonic = { version = "0.14.5", features = ["gzip", "deflate", "zstd"] }
tonic-prost = "0.14.5"
tower = "0.5.3"
x509-parser = "0.18.1"
zeroize = "1.8.2"
[build-dependencies]
tonic-prost-build = "*"