Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: pin intrusive collections #193

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ 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 }

[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
Loading