mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
35 lines
868 B
TOML
35 lines
868 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-node-core.workspace = true
|
|
reth-rpc-api.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
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"] }
|
|
|
|
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"
|