forked from PolyhedraZK/ExpanderCompilerCollection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 1.37 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
[workspace]
resolver = "2"
members = [ "circuit-std-rs","expander_compiler", "expander_compiler/ec_go_lib", "efc"]
[profile.test]
opt-level = 3
[profile.dev]
opt-level = 3
[workspace.dependencies]
ark-std = "0.4.0"
rand = "0.8.5"
chrono = "0.4.39"
clap = { version = "4.5.30", features = ["derive"] }
ethnum = "1.5.0"
tiny-keccak = { version = "2.0", features = ["keccak"] }
halo2curves = { git = "https://github.com/PolyhedraZK/halo2curves", default-features = false, features = [
"bits",
] }
arith = { git = "https://github.com/PolyhedraZK/Expander", branch = "main" }
mpi_config = { git = "https://github.com/PolyhedraZK/Expander", branch = "main" }
gkr_field_config = { git = "https://github.com/PolyhedraZK/Expander", branch = "main" }
expander_config = { git = "https://github.com/PolyhedraZK/Expander", branch = "main", package = "config" }
expander_circuit = { git = "https://github.com/PolyhedraZK/Expander", branch = "main", package = "circuit" }
gkr = { git = "https://github.com/PolyhedraZK/Expander", branch = "main" }
gf2 = { git = "https://github.com/PolyhedraZK/Expander", branch = "main" }
mersenne31 = { git = "https://github.com/PolyhedraZK/Expander", branch = "main" }
expander_transcript = { git = "https://github.com/PolyhedraZK/Expander", branch = "main", package = "transcript" }
crosslayer_prototype = { git = "https://github.com/PolyhedraZK/Expander", branch = "main"}