Skip to content

Commit

Permalink
fix: individual crate compilation (#5157)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jun 14, 2023
1 parent 6b20241 commit ce687fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ syn = "2.0"
foundry-macros = { path = "../macros" }

ethers-core = { workspace = true }
ethers-contract = { workspace = true }
ethers-contract = { workspace = true, features = ["abigen"] }
ethers-providers = { workspace = true }
4 changes: 2 additions & 2 deletions cli/tests/it/script.rs
Original file line number Diff line number Diff line change
Expand Up @@ -723,11 +723,11 @@ forgetest_async!(
.join("../testdata/fixtures/broadcast.log.json"),
)
.unwrap();
let fixtures_log = re.replace_all(&fixtures_log, "");
let _fixtures_log = re.replace_all(&fixtures_log, "");

let run_log =
std::fs::read_to_string("broadcast/Broadcast.t.sol/31337/run-latest.json").unwrap();
let run_log = re.replace_all(&run_log, "");
let _run_log = re.replace_all(&run_log, "");

// pretty_assertions::assert_eq!(fixtures_log, run_log);

Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/foundry-rs/foundry"
forge-fmt = { path = "../fmt" }

ethers-core = { workspace = true }
ethers-contract = { workspace = true }
ethers-contract = { workspace = true, features = ["abigen"] }
ethers-etherscan = { workspace = true }
ethers-addressbook = { workspace = true }
ethers-providers = { workspace = true }
Expand Down

0 comments on commit ce687fc

Please sign in to comment.