mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
21 lines
513 B
TOML
21 lines
513 B
TOML
[package]
|
|
name = "reth-revm-inspectors"
|
|
version = "0.1.0"
|
|
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 = { path = "../../primitives" }
|
|
reth-rpc-types = { path = "../../rpc/rpc-types" }
|
|
|
|
revm = { version = "3" }
|
|
# remove from reth and reexport from revm
|
|
hashbrown = "0.13"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|