diff --git a/Cargo.lock b/Cargo.lock index f3bae8694..d3a32cb7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6024,12 +6024,15 @@ dependencies = [ "boa_engine", "boa_gc", "hashbrown 0.14.0", + "icu_collections", + "icu_provider_macros", "reth-primitives", "reth-rpc-types", "revm", "serde", "serde_json", "thiserror", + "tinystr", "tokio", ] diff --git a/crates/revm/revm-inspectors/Cargo.toml b/crates/revm/revm-inspectors/Cargo.toml index 6994bd8af..f04b968dc 100644 --- a/crates/revm/revm-inspectors/Cargo.toml +++ b/crates/revm/revm-inspectors/Cargo.toml @@ -24,6 +24,11 @@ serde_json = { workspace = true, optional = true } # js-tracing-inspector boa_engine = { workspace = true, optional = true } boa_gc = { workspace = true, optional = true } +# pin this until https://github.com/boa-dev/boa/issues/3299 is mitigated +icu_collections = "=1.2.0" +icu_provider_macros = "=1.2.0" +tinystr = "=0.7.1" + tokio = { version = "1", features = ["sync"], optional = true } [features] diff --git a/crates/revm/revm-inspectors/src/lib.rs b/crates/revm/revm-inspectors/src/lib.rs index c02dfeb32..30e6dca6e 100644 --- a/crates/revm/revm-inspectors/src/lib.rs +++ b/crates/revm/revm-inspectors/src/lib.rs @@ -4,7 +4,7 @@ html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com/paradigmxzy/reth/issues/" )] -#![warn(missing_docs, unreachable_pub, unused_crate_dependencies)] +#![warn(missing_docs, unreachable_pub)] #![deny(unused_must_use, rust_2018_idioms)] #![doc(test( no_crate_inject,