mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
36 lines
944 B
TOML
36 lines
944 B
TOML
[package]
|
|
name = "reth-consensus-debug-client"
|
|
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-node-api.workspace = true
|
|
reth-rpc-api = { workspace = true, features = ["client"] }
|
|
reth-rpc-builder.workspace = true
|
|
reth-tracing.workspace = true
|
|
|
|
# ethereum
|
|
alloy-consensus = { workspace = true, features = ["serde"] }
|
|
alloy-eips.workspace = true
|
|
alloy-provider = { workspace = true, features = ["ws"] }
|
|
alloy-rpc-types-eth.workspace = true
|
|
alloy-rpc-types-engine.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
auto_impl.workspace = true
|
|
futures.workspace = true
|
|
eyre.workspace = true
|
|
reqwest = { workspace = true, features = ["rustls-tls", "json"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["time"] }
|
|
|
|
ringbuffer = "0.15.0"
|