mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com>
54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-chainspec"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-ethereum-forks.workspace = true
|
|
reth-network-peers.workspace = true
|
|
reth-trie-common.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
|
|
# ethereum
|
|
alloy-chains = { workspace = true, features = ["serde", "rlp"] }
|
|
alloy-eips = { workspace = true, features = ["serde"] }
|
|
alloy-genesis.workspace = true
|
|
alloy-primitives = { workspace = true, features = ["rand", "rlp"] }
|
|
alloy-trie.workspace = true
|
|
|
|
# misc
|
|
once_cell.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
derive_more.workspace = true
|
|
|
|
[dev-dependencies]
|
|
# eth
|
|
nybbles = { workspace = true, features = ["arbitrary"] }
|
|
alloy-trie = { workspace = true, features = ["arbitrary"] }
|
|
alloy-eips = { workspace = true, features = ["arbitrary"] }
|
|
alloy-rlp = { workspace = true, features = ["arrayvec"] }
|
|
alloy-genesis.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
rand.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
optimism = [
|
|
"reth-ethereum-forks/optimism"
|
|
]
|
|
std = []
|
|
arbitrary = [
|
|
"alloy-chains/arbitrary"
|
|
]
|
|
|
|
|