-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathCargo.toml
50 lines (49 loc) · 1.42 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
47
48
49
50
[workspace]
members = [
"arith", # definitions of Field, Extensions, SIMDS
"arith/field_hashers",
"arith/gf2",
"arith/gf2_128",
"arith/goldilocks",
"arith/mersenne31",
"arith/polynomials",
"bi-kzg",
"circuit",
"config", # gkr_field_config + pcs_config + transcript_config
"config/gkr_field_config", # definitions of all field types used in gkr and pcs
"config/mpi_config", # definitions of mpi communication toolkit
"config/config_macros", # proc macros used to declare a new config, this has to a separate crate due to rust compilation issues
"gkr",
"poly_commit",
"sumcheck",
"crosslayer_prototype",
"transcript",
"tree"
]
resolver = "2"
[workspace.dependencies]
ark-std = "0.4"
ark-bn254 = "0.4.0"
ark-ec = "0.4.0"
ark-ff = { version = "0.4" }
bytes = "1.6.0"
chrono = "0.4.38"
clap = { version = "4.1", features = ["derive"] }
criterion = { version = "0.5", features = ["html_reports"] }
env_logger = "0.11.3"
halo2curves = { git = "https://github.com/PolyhedraZK/halo2curves", default-features = false, features = [
"bits",
] }
itertools = "0.13"
log = "0.4"
mpi = "0.8.0"
rand = "0.8.5"
rayon = "1.10"
sha2 = "0.10.8"
tiny-keccak = { version = "2.0.2", features = [ "sha3", "keccak" ] }
tokio = { version = "1.38.0", features = ["full"] }
tynm = { version = "0.1.6", default-features = false }
warp = "0.3.7"
thiserror = "1.0.63"
ethnum = "1.5.0"
rand_chacha = "0.3.1"