mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Oliver Nordbjerg <onbjerg@users.noreply.github.com> Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
43 lines
892 B
TOML
43 lines
892 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-consensus-common.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-trie = { workspace = true, optional = true }
|
|
|
|
# revm
|
|
revm.workspace = true
|
|
revm-inspectors.workspace = true
|
|
|
|
# common
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-trie.workspace = true
|
|
|
|
[features]
|
|
test-utils = ["dep:reth-trie"]
|
|
optimism = [
|
|
"revm/optimism",
|
|
"reth-primitives/optimism",
|
|
"reth-provider/optimism",
|
|
"reth-consensus-common/optimism",
|
|
"reth-interfaces/optimism",
|
|
]
|
|
js-tracer = ["revm-inspectors/js-tracer"]
|