forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (26 loc) · 861 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "reth-revm-inspectors"
version.workspace = true
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
# eth
alloy-sol-types.workspace = true
revm.workspace = true
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
# js-tracing-inspector
boa_engine = { workspace = true, optional = true }
boa_gc = { workspace = true, optional = true }
tokio = { version = "1", features = ["sync"], optional = true }
[features]
default = ["js-tracer"]
js-tracer = ["boa_engine", "boa_gc", "tokio", "thiserror", "serde_json"]