From 0dceb536da7129c8e58b2c30c7059e247467838f Mon Sep 17 00:00:00 2001 From: m4rio <92288535+mario-eth@users.noreply.github.com> Date: Wed, 3 Jul 2024 09:33:46 -0700 Subject: [PATCH] Soldeer release v0.2.17 (#8344) * Soldeer release v0.2.17 * solved failing test --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/forge/tests/cli/soldeer.rs | 13 +++++-------- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff3c4969a3e6..64a30260d834 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7974,9 +7974,9 @@ dependencies = [ [[package]] name = "soldeer" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75abb7ac158a52b280cb6bc3019ab5786cc6a07cf85d71c9b952c649e33a55f6" +checksum = "ef46372c17d5650cb18b7f374c45732334fa0867de6c7f14c1fc6973559cd3ff" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 8d13a7859163..5c3ae60d585b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -260,4 +260,4 @@ reqwest = { version = "0.12", default-features = false } tower = "0.4" tower-http = "0.5" # soldeer -soldeer = "0.2.16" +soldeer = "0.2.17" diff --git a/crates/forge/tests/cli/soldeer.rs b/crates/forge/tests/cli/soldeer.rs index 7ac57a0742ce..cf1e0e5d34aa 100644 --- a/crates/forge/tests/cli/soldeer.rs +++ b/crates/forge/tests/cli/soldeer.rs @@ -36,15 +36,12 @@ checksum = "0f7cd44f5670c31a9646d4031e70c66321cd3ed6ebac3c7278e4e57e4e5c5bd0" assert_eq!(lock_contents, actual_lock_contents); // Making sure the foundry contents are the right ones - let foundry_contents = r#" -# Full reference https://github.com/foundry-rs/foundry/tree/master/crates/config - -[profile.default] -script = "script" -solc = "0.8.26" + let foundry_contents = r#"[profile.default] src = "src" -test = "test" -libs = ["dependencies"] +out = "out" +libs = ["lib"] + +# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options [dependencies] forge-std = "1.8.1"