Skip to content

Commit

Permalink
Upgrade dependency itertools, strum and strum_macros. (scroll-t…
Browse files Browse the repository at this point in the history
  • Loading branch information
silathdiir authored Nov 9, 2023
1 parent 2470629 commit f606308
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 42 deletions.
102 changes: 65 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ethers-signers = "2.0.7"
halo2_proofs = { git = "https://github.com/scroll-tech/halo2.git", branch = "develop" }
hash-circuit = { package = "poseidon-circuit", git = "https://github.com/scroll-tech/poseidon-circuit.git", branch = "scroll-dev-0901"}
hex = "0.4"
itertools = "0.10"
itertools = "0.11"
lazy_static = "1.4"
libsecp256k1 = "0.7"
log = "0.4"
Expand All @@ -52,8 +52,8 @@ serde_json = "1.0"
sha3 = "0.10"
snark-verifier = { git = "https://github.com/scroll-tech/snark-verifier", tag = "v0.1.5" }
snark-verifier-sdk = { git = "https://github.com/scroll-tech/snark-verifier", tag = "v0.1.5", default-features = false, features = ["loader_halo2", "loader_evm", "halo2-pse"] }
strum = "0.24"
strum_macros = "0.24"
strum = "0.25"
strum_macros = "0.25"
subtle = "2.4"
tokio = { version = "1.13", features = ["macros", "rt-multi-thread"] }
url = "2.2"
Expand Down
2 changes: 1 addition & 1 deletion bus-mapping/src/precompile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use eth_types::{evm_types::GasCost, Address, ToBigEndian, Word};
use revm_precompile::{Precompile, PrecompileError, Precompiles};
use strum::EnumIter;
use strum_macros::EnumIter;

use crate::circuit_input_builder::{EcMulOp, EcPairingOp, N_BYTES_PER_PAIR, N_PAIRING_PER_OP};

Expand Down
2 changes: 1 addition & 1 deletion testool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use std::{
path::PathBuf,
time::SystemTime,
};
use strum::EnumString;
use strum_macros::EnumString;

const REPORT_FOLDER: &str = "report";
const CODEHASH_FILE: &str = "./codehash.txt";
Expand Down

0 comments on commit f606308

Please sign in to comment.