mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
29 lines
825 B
TOML
29 lines
825 B
TOML
[package]
|
|
name = "reth-auto-seal-consensus"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "A consensus impl for local testing purposes"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-beacon-consensus = { path = "../beacon" }
|
|
reth-primitives = { workspace = true }
|
|
reth-interfaces = { workspace = true }
|
|
reth-provider = { workspace = true }
|
|
reth-stages = { path = "../../stages" }
|
|
reth-revm = { path = "../../revm" }
|
|
reth-transaction-pool = { workspace = true }
|
|
|
|
# async
|
|
futures-util = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync", "time"] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|