mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-27 08:08:15 -05:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com> Co-authored-by: Federico Gimenez <federico.gimenez@gmail.com>
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "example-custom-node"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chain-state.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-codecs.workspace = true
|
|
reth-network-peers.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-node-builder.workspace = true
|
|
reth-optimism-chainspec.workspace = true
|
|
reth-optimism-forks.workspace = true
|
|
reth-optimism-node.workspace = true
|
|
reth-optimism-primitives = { workspace = true, features = ["serde", "reth-codec"] }
|
|
reth-primitives-traits.workspace = true
|
|
|
|
# revm
|
|
revm-primitives.workspace = true
|
|
|
|
# alloy
|
|
alloy-consensus = { workspace = true, features = ["serde"] }
|
|
alloy-eips.workspace = true
|
|
alloy-genesis.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-rlp.workspace = true
|
|
alloy-rpc-types-engine.workspace = true
|
|
op-alloy-rpc-types-engine.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
serde.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
arbitrary = [
|
|
"alloy-consensus/arbitrary",
|
|
"alloy-eips/arbitrary",
|
|
"alloy-primitives/arbitrary",
|
|
"op-alloy-rpc-types-engine/arbitrary",
|
|
"reth-chainspec/arbitrary",
|
|
"reth-codecs/arbitrary",
|
|
"reth-optimism-primitives/arbitrary",
|
|
"reth-primitives-traits/arbitrary",
|
|
"revm-primitives/arbitrary",
|
|
]
|