diff --git a/Cargo.lock b/Cargo.lock index d7e81f861..31eaef07c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5178,7 +5178,6 @@ dependencies = [ "fs4 0.8.4", "itertools 0.13.0", "path-slash", - "regex", "reqwest 0.12.9", "semver 1.0.23", "serde", diff --git a/crates/zksync/compilers/Cargo.toml b/crates/zksync/compilers/Cargo.toml index c67512136..9f538b587 100644 --- a/crates/zksync/compilers/Cargo.toml +++ b/crates/zksync/compilers/Cargo.toml @@ -37,5 +37,4 @@ similar-asserts.workspace = true fd-lock = "4.0.2" tempfile.workspace = true foundry-test-utils.workspace = true -regex = { workspace = true, default-features = false } diff --git a/crates/zksync/compilers/src/lib.rs b/crates/zksync/compilers/src/lib.rs index 19579c8c7..4fd584b52 100644 --- a/crates/zksync/compilers/src/lib.rs +++ b/crates/zksync/compilers/src/lib.rs @@ -13,6 +13,4 @@ pub mod link; #[cfg(test)] use foundry_test_utils as _; #[cfg(test)] -use regex as _; -#[cfg(test)] use tempfile as _;