@@ -8,33 +8,35 @@ edition = "2021"
8
8
crate-type = [" cdylib" ]
9
9
10
10
[patch .crates-io ]
11
+ gobuild = { git = " https://github.com/scroll-tech/gobuild.git" }
12
+ halo2curves = { git = " https://github.com/scroll-tech/halo2curves" , branch = " v0.1.0" }
11
13
ethers-core = { git = " https://github.com/scroll-tech/ethers-rs.git" , branch = " v2.0.7" }
14
+ ethers-providers = { git = " https://github.com/scroll-tech/ethers-rs.git" , branch = " v2.0.7" }
15
+ ethers-signers = { git = " https://github.com/scroll-tech/ethers-rs.git" , branch = " v2.0.7" }
16
+ # ethers-etherscan = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
17
+ # ethers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
12
18
[patch ."https://github .com/privacy-scaling-explorations/halo2 .git" ]
13
- halo2_proofs = { git = " https://github.com/scroll-tech/halo2.git" , branch = " develop " }
19
+ halo2_proofs = { git = " https://github.com/scroll-tech/halo2.git" , branch = " v1.1 " }
14
20
[patch ."https://github .com/privacy-scaling-explorations/poseidon .git" ]
15
- poseidon = { git = " https://github.com/scroll-tech/poseidon.git" , branch = " scroll-dev-0220" }
16
- [patch ."https://github .com/privacy-scaling-explorations/halo2wrong .git" ]
17
- halo2wrong = { git = " https://github.com/scroll-tech/halo2wrong.git" , branch = " halo2-ecc-snark-verifier-0323" }
18
- maingate = { git = " https://github.com/scroll-tech/halo2wrong" , branch = " halo2-ecc-snark-verifier-0323" }
19
- [patch ."https://github .com/privacy-scaling-explorations/halo2curves .git" ]
20
- halo2curves = { git = " https://github.com/scroll-tech/halo2curves.git" , branch = " 0.3.1-derive-serde" }
21
+ poseidon = { git = " https://github.com/scroll-tech/poseidon.git" , branch = " main" }
22
+ [patch ."https://github .com/privacy-scaling-explorations/bls12_381" ]
23
+ bls12_381 = { git = " https://github.com/scroll-tech/bls12_381" , branch = " feat/impl_scalar_field" }
21
24
22
25
[dependencies ]
26
+ halo2_proofs = { git = " https://github.com/scroll-tech/halo2.git" , branch = " v1.1" }
23
27
prover = { git = " https://github.com/scroll-tech/zkevm-circuits.git" , tag = " v0.10.0l" , default-features = false , features = [" parallel_syn" , " scroll" , " shanghai" ] }
24
28
25
- anyhow = " 1.0"
26
- log = " 0.4"
29
+ base64 = " 0.13.0"
27
30
env_logger = " 0.9.0"
31
+ libc = " 0.2"
32
+ log = " 0.4"
33
+ once_cell = " 1.19"
28
34
serde = " 1.0"
29
35
serde_derive = " 1.0"
30
36
serde_json = " 1.0.66"
31
- libc = " 0.2"
32
- once_cell = " 1.8.0"
33
-
34
37
35
38
[profile .test ]
36
39
opt-level = 3
37
- debug-assertions = true
38
40
39
41
[profile .release ]
40
- opt-level = 3
42
+ opt-level = 3
0 commit comments