mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Roberto Bayardo <bayardo@alum.mit.edu> Co-authored-by: refcell.eth <abigger87@gmail.com> Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: refcell <refcell@oplabs.co> Co-authored-by: nicolas <48695862+merklefruit@users.noreply.github.com>
32 lines
671 B
TOML
32 lines
671 B
TOML
[package]
|
|
name = "reth-revm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "reth specific revm utilities"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-revm-inspectors = { path = "./revm-inspectors" }
|
|
reth-consensus-common = { path = "../consensus/common" }
|
|
|
|
# revm
|
|
revm.workspace = true
|
|
|
|
# common
|
|
tracing.workspace = true
|
|
|
|
[features]
|
|
optimism = [
|
|
"revm/optimism",
|
|
"reth-primitives/optimism",
|
|
"reth-consensus-common/optimism",
|
|
"reth-interfaces/optimism",
|
|
]
|