forked from PolyhedraZK/Expander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (77 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "expander-rs"
version = "0.1.0"
edition = "2021"
default-run = "expander-rs" # default
[dependencies]
arith = { path = "arith" }
ark-std.workspace = true
clap.workspace = true
env_logger.workspace = true
log.workspace = true
mpi.workspace = true
rand.workspace = true
sha2.workspace = true
halo2curves.workspace = true
thiserror.workspace = true
# for the server
bytes.workspace = true
tokio.workspace = true
warp.workspace = true
chrono.workspace = true
tynm.workspace = true
tiny-keccak.workspace = true
[dev-dependencies]
criterion = "0.5.1"
[[bin]]
name = "expander-rs-mpi"
path = "src/main_mpi.rs"
[[bin]]
name = "expander-exec"
path = "src/exec.rs"
[[bin]]
name = "dev-setup"
path = "src/utils.rs"
[features]
default = []
# default = [ "grinding" ]
grinding = []
[workspace]
members = ["arith", "bi-kzg"]
[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" ] }
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"
[[bench]]
name = "arith"
harness = false
path = "arith/benches/field.rs"
[[bench]]
name = "arith-ext-by-base"
harness = false
path = "arith/benches/ext_field.rs"
[[bench]]
name = "gkr-hashes"
harness = false
path = "benches/gkr_hashes.rs"