[package] name = "reth-auto-seal-consensus" version = "0.1.0" 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 = { path = "../../primitives" } reth-interfaces = { path = "../../interfaces" } reth-provider = { path = "../../storage/provider" } reth-stages = { path = "../../stages" } reth-revm = { path = "../../revm" } reth-transaction-pool = { path = "../../transaction-pool" } # async futures-util = "0.3" tokio = { version = "1", features = ["sync", "time"] } tokio-stream = "0.1" tracing = { workspace = true } [dev-dependencies] reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }