mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
40 lines
776 B
TOML
40 lines
776 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"
|
|
]
|