Skip to content

Commit 818eed0

Browse files
committed
fix
1 parent 71964a1 commit 818eed0

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

rollup/circuitcapacitychecker/libzkp/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup/circuitcapacitychecker/libzkp/Cargo.toml

+16-14
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,35 @@ edition = "2021"
88
crate-type = ["cdylib"]
99

1010
[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" }
1113
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" }
1218
[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" }
1420
[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" }
2124

2225
[dependencies]
26+
halo2_proofs = { git = "https://github.com/scroll-tech/halo2.git", branch = "v1.1" }
2327
prover = { git = "https://github.com/scroll-tech/zkevm-circuits.git", tag = "v0.10.0l", default-features = false, features = ["parallel_syn", "scroll", "shanghai"] }
2428

25-
anyhow = "1.0"
26-
log = "0.4"
29+
base64 = "0.13.0"
2730
env_logger = "0.9.0"
31+
libc = "0.2"
32+
log = "0.4"
33+
once_cell = "1.19"
2834
serde = "1.0"
2935
serde_derive = "1.0"
3036
serde_json = "1.0.66"
31-
libc = "0.2"
32-
once_cell = "1.8.0"
33-
3437

3538
[profile.test]
3639
opt-level = 3
37-
debug-assertions = true
3840

3941
[profile.release]
40-
opt-level = 3
42+
opt-level = 3

0 commit comments

Comments
 (0)