mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
32 lines
932 B
TOML
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"]
|