forked from privacy-scaling-explorations/zkevm-chain
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
27 lines (22 loc) · 1.43 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
[workspace]
members = [
"coordinator",
"prover",
"dev"
]
[profile.release]
opt-level = 3
lto = "thin"
[patch."https://github.com/privacy-scaling-explorations/halo2.git"]
halo2_proofs = { git = "https://github.com/appliedzkp/halo2.git", tag = "v2023_04_20", package = "halo2_proofs" }
# [patch."https://github.com/privacy-scaling-explorations/halo2curves.git"]
# halo2_curves = { git = "https://github.com/appliedzkp/halo2curves.git", tag = "0.3.3", package = "halo2curves" }
[patch."https://github.com/privacy-scaling-explorations/halo2wrong.git"]
halo2_wrong_ecc = { git = "https://github.com/appliedzkp/halo2wrong.git", tag = "v2023_04_20", package = "ecc" }
halo2_wrong_integer = { git = "https://github.com/appliedzkp/halo2wrong.git", tag = "v2023_04_20", package = "integer" }
halo2_wrong_maingate = { git = "https://github.com/appliedzkp/halo2wrong.git", tag = "v2023_04_20", package = "maingate" }
#[patch."https://github.com/privacy-scaling-explorations/zkevm-circuits.git"]
#bus-mapping = { git = "https://github.com/privacy-scaling-explorations/zkevm-circuits.git", branch = "zkevm-chain" }
#eth-types = { git = "https://github.com/privacy-scaling-explorations/zkevm-circuits.git", branch = "zkevm-chain" }
#zkevm-circuits = { git = "https://github.com/privacy-scaling-explorations/zkevm-circuits.git", branch = "zkevm-chain" }
#mock = { git = "https://github.com/privacy-scaling-explorations/zkevm-circuits.git", branch = "zkevm-chain" }