mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
39 lines
967 B
TOML
39 lines
967 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-beacon-consensus.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-stages-api.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-network-types.workspace = true
|
|
reth-tokio-util.workspace = true
|
|
|
|
# async
|
|
futures-util.workspace = true
|
|
tokio = { workspace = true, features = ["sync", "time"] }
|
|
tokio-stream.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[features]
|
|
# Included solely to ignore certain tests.
|
|
optimism = []
|