chore: fix deps

This commit is contained in:
enrico.eth
2024-01-02 14:37:07 +01:00
parent bf88ac7b35
commit 03e4199f17
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
axiom-eth = { git = "https://github.com/axiom-crypto/axiom-eth.git", branch = "community-edition", default-features = false, features = ["halo2-axiom", "aggregation", "evm", "clap"] }
halo2-base = { git = "https://github.com/axiom-crypto/halo2-lib", tag = "v0.3.0-ce" }
halo2-scaffold = {git = "https://github.com/axiom-crypto/halo2-scaffold" }
halo2-scaffold = {git = "https://github.com/axiom-crypto/halo2-scaffold", tag = "v0.2.0" }
clap = { version = "=4.0.13", features = ["derive"] }
serde = { version = "=1.0", default-features = false, features = ["derive"] }
env_logger = "=0.10"
@@ -17,6 +17,7 @@ num-bigint = "0.4"
num-traits = "0.2.17"
num-integer = "0.1.44"
colored = "=2.0.0"
ahash = "=0.8.6"
# Dev / testing mode. We make opt-level = 3 to improve proving times (otherwise it is really slow)
[profile.dev]

View File

@@ -286,7 +286,6 @@ impl<F: Field> PolyChip<F> {
let z_plus_one_const = Constant(F::from(z + 1));
let y_minus_z_const = Constant(F::from(y - z));
let y_const = Constant(F::from(y));
let y_bits = BigInt::from(y).bits();
for coeff in self.assigned_coefficients.iter() {