mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 09:38:24 -05:00
62 lines
1.6 KiB
TOML
62 lines
1.6 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.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-payload-builder.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-rpc-api.workspace = true
|
|
reth-rpc-engine-api.workspace = true
|
|
reth-transaction-pool.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-consensus.workspace = true
|
|
op-alloy-rpc-types-engine.workspace = true
|
|
|
|
# misc
|
|
async-trait.workspace = true
|
|
derive_more.workspace = true
|
|
eyre.workspace = true
|
|
jsonrpsee.workspace = true
|
|
serde.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
arbitrary = [
|
|
"alloy-consensus/arbitrary",
|
|
"alloy-eips/arbitrary",
|
|
"alloy-primitives/arbitrary",
|
|
"op-alloy-consensus/arbitrary",
|
|
"op-alloy-rpc-types-engine/arbitrary",
|
|
"reth-chainspec/arbitrary",
|
|
"reth-codecs/arbitrary",
|
|
"reth-optimism-primitives/arbitrary",
|
|
"reth-primitives-traits/arbitrary",
|
|
"revm-primitives/arbitrary",
|
|
"reth-transaction-pool/arbitrary",
|
|
]
|