Files
nanoreth/crates/revm/revm-inspectors/Cargo.toml
Matthias Seitz cf10590e4a feat: add js tracer (#3100)
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
2023-06-14 12:42:00 +00:00

32 lines
932 B
TOML

[package]
name = "reth-revm-inspectors"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "revm inspector implementations used by reth"
[dependencies]
# reth
reth-primitives = { workspace = true }
reth-rpc-types = { workspace = true }
revm = { workspace = true }
# remove from reth and reexport from revm
hashbrown = "0.13"
serde = { workspace = true, features = ["derive"] }
thiserror = {version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
# js-tracing-inspector
boa_engine = { git = "https://github.com/boa-dev/boa", optional = true }
boa_gc = { git = "https://github.com/boa-dev/boa", optional = true }
tokio = { version = "1", features = ["sync"], optional = true }
[features]
default = ["js-tracer"]
js-tracer = ["boa_engine", "boa_gc", "tokio","thiserror", "serde_json"]