-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (43 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
48 lines (43 loc) · 1.32 KB
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
47
48
[package]
name = "adkg"
version = "0.1.0"
edition = "2024"
[features]
bn254 = ["scheme", "dep:ark-bn254"]
bls12-381 = ["scheme", "dep:ark-bls12-381", "dep:sha2"]
scheme = []
[dependencies]
dcipher-network.workspace = true
ark-bn254 = { workspace = true, optional = true }
ark-bls12-381 = { workspace = true, optional = true }
ark-ec.workspace = true
ark-ff.workspace = true
ark-poly.workspace = true
ark-std.workspace = true
async-trait.workspace = true
bson.workspace = true
chacha20poly1305.workspace = true
digest = { workspace = true, features = ["core-api"] }
hkdf = "0.12"
itertools.workspace = true
nalgebra = "0.33"
utils.workspace = true
rand.workspace = true
rand_chacha = "0.3"
reed-solomon = "0.2.1"
serde = { workspace = true, features = ["derive"] }
serde_with.workspace = true
sha2 = { workspace = true, optional = true}
sha3.workspace = true
thiserror.workspace = true
tracing.workspace = true
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread", "sync"] }
tokio-util.workspace = true
futures.workspace = true
[dev-dependencies]
dcipher-network = { workspace = true, features = ["in_memory"] }
ark-bn254.workspace = true
ark-bls12-381.workspace = true
utils = { workspace = true, features = ["bls12-381", "bn254", "sha3"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
rayon = "1.0"