mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
39 lines
937 B
TOML
39 lines
937 B
TOML
[package]
|
|
name = "reth-evm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec.workspace = true
|
|
reth-execution-errors.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
revm-primitives.workspace = true
|
|
reth-prune-types.workspace = true
|
|
reth-metrics = { workspace = true, optional = true }
|
|
reth-storage-errors.workspace = true
|
|
reth-execution-types.workspace = true
|
|
|
|
revm.workspace = true
|
|
alloy-eips.workspace = true
|
|
auto_impl.workspace = true
|
|
futures-util.workspace = true
|
|
metrics = { workspace = true, optional = true }
|
|
parking_lot = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
parking_lot.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["dep:metrics", "dep:reth-metrics"]
|
|
test-utils = ["dep:parking_lot"]
|