Skip to content

Commit 553da5b

Browse files
authored
Merge branch 'master' into yash/decode-bytes-strings-state-diffs
2 parents 57833ef + a1534da commit 553da5b

File tree

41 files changed

+2614
-2555
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2614
-2555
lines changed

.config/nextest.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,3 @@ slow-timeout = { period = "5m", terminate-after = 4 }
1212
[[profile.default.overrides]]
1313
filter = "package(foundry-cheatcodes-spec)"
1414
retries = 0
15-
16-
[[profile.default.overrides]]
17-
filter = "package(chisel)"
18-
test-group = "chisel-serial"

Cargo.lock

Lines changed: 50 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ members = [
2929
resolver = "2"
3030

3131
[workspace.package]
32-
version = "1.3.2"
32+
version = "1.3.4"
3333
edition = "2024"
3434
# Remember to update clippy.toml as well
3535
rust-version = "1.88"
@@ -353,6 +353,7 @@ jiff = "0.2"
353353
heck = "0.5"
354354
uuid = "1.17.0"
355355
flate2 = "1.1"
356+
snapbox = { version = "0.6", features = ["json", "regex", "term-svg"] }
356357

357358
## Pinned dependencies. Enabled for the workspace in crates/test-utils.
358359

@@ -362,6 +363,9 @@ flate2 = "1.1"
362363
idna_adapter = "=1.1.0"
363364

364365
[patch.crates-io]
366+
# https://github.com/rust-cli/rexpect/pull/106
367+
rexpect = { git = "https://github.com/rust-cli/rexpect", rev = "2ed0b1898d7edaf6a85bedbae71a01cc578958fc" }
368+
365369
## alloy-core
366370
# alloy-dyn-abi = { path = "../../alloy-rs/core/crates/dyn-abi" }
367371
# alloy-json-abi = { path = "../../alloy-rs/core/crates/json-abi" }

crates/anvil/src/args.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::opts::{Anvil, AnvilSubcommand};
22
use clap::{CommandFactory, Parser};
33
use eyre::Result;
4-
use foundry_cli::{handler, utils};
4+
use foundry_cli::utils;
55

66
/// Run the `anvil` command line interface.
77
pub fn run() -> Result<()> {
@@ -16,10 +16,7 @@ pub fn run() -> Result<()> {
1616

1717
/// Setup the exception handler and other utilities.
1818
pub fn setup() -> Result<()> {
19-
utils::install_crypto_provider();
20-
handler::install();
21-
utils::load_dotenv();
22-
utils::enable_paint();
19+
utils::common_setup();
2320

2421
Ok(())
2522
}

0 commit comments

Comments
 (0)