mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
29 lines
687 B
TOML
29 lines
687 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-primitives = { path = "./revm-primitives" }
|
|
reth-revm-inspectors = { path = "./revm-inspectors" }
|
|
reth-consensus-common = { path = "../consensus/common" }
|
|
|
|
# revm
|
|
revm = { workspace = true }
|
|
|
|
# common
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
reth-rlp = { workspace = true }
|
|
once_cell = "1.17.0"
|