Files
nanoreth/crates/consensus/common/Cargo.toml
georgehao 2e4376f359 add format checker to .toml (#13968)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2025-01-28 12:20:58 +00:00

40 lines
798 B
TOML

[package]
name = "reth-consensus-common"
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-chainspec.workspace = true
reth-consensus.workspace = true
# ethereum
alloy-primitives.workspace = true
reth-primitives-traits.workspace = true
alloy-consensus.workspace = true
alloy-eips.workspace = true
[dev-dependencies]
reth-primitives.workspace = true
alloy-consensus.workspace = true
rand.workspace = true
[features]
default = ["std"]
std = [
"alloy-consensus/std",
"alloy-eips/std",
"alloy-primitives/std",
"reth-chainspec/std",
"reth-consensus/std",
"reth-primitives-traits/std",
"reth-primitives/std",
]