Skip to content

Commit

Permalink
chore: pin intrusive collections (paradigmxyz#193)
Browse files Browse the repository at this point in the history
newer version broke boa
  • Loading branch information
mattsse authored and lwedge99 committed Oct 8, 2024
1 parent 6c408ff commit a59d7cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ serde_json = "1.0"
# js-tracer
boa_engine = { version = "0.19", optional = true }
boa_gc = { version = "0.19", optional = true }
intrusive-collections = { version = "=0.9.6", optional = true }
log = "0.4.22"

[dev-dependencies]
snapbox = "0.6"

[features]
serde = ["dep:serde", "revm/serde"]
js-tracer = ["dep:boa_engine", "dep:boa_gc"]
js-tracer = ["dep:boa_engine", "dep:boa_gc", "dep:intrusive-collections"]
3 changes: 3 additions & 0 deletions src/tracing/js/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ use revm::{
ContextPrecompiles, Database, DatabaseRef, EvmContext, Inspector,
};

// TODO: remove pin once boa compiles with newer version
use intrusive_collections as _;

pub(crate) mod bindings;
pub(crate) mod builtins;

Expand Down

0 comments on commit a59d7cd

Please sign in to comment.