mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
88 lines
2.3 KiB
TOML
88 lines
2.3 KiB
TOML
[package]
|
|
name = "reth-node-ethereum"
|
|
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-payload-builder.workspace = true
|
|
reth-ethereum-engine-primitives.workspace = true
|
|
reth-basic-payload-builder.workspace = true
|
|
reth-ethereum-payload-builder.workspace = true
|
|
reth-node-builder.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-network.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-beacon-consensus.workspace = true
|
|
reth-rpc.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-revm = { workspace = true, features = ["std"] }
|
|
reth-trie-db.workspace = true
|
|
|
|
# revm with required ethereum features
|
|
revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg"] }
|
|
|
|
# misc
|
|
eyre.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-chainspec.workspace = true
|
|
reth-db.workspace = true
|
|
reth-exex.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-e2e-test-utils.workspace = true
|
|
reth-rpc-eth-api.workspace = true
|
|
reth-tasks.workspace = true
|
|
|
|
alloy-primitives.workspace = true
|
|
alloy-consensus.workspace = true
|
|
alloy-provider.workspace = true
|
|
alloy-genesis.workspace = true
|
|
alloy-signer.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-sol-types.workspace = true
|
|
alloy-contract.workspace = true
|
|
alloy-rpc-types-beacon = { workspace = true, features = ["ssz"] }
|
|
alloy-rpc-types-engine.workspace = true
|
|
alloy-rpc-types-eth.workspace = true
|
|
|
|
futures.workspace = true
|
|
tokio.workspace = true
|
|
serde_json.workspace = true
|
|
rand.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
js-tracer = [
|
|
"reth-node-builder/js-tracer"
|
|
]
|
|
test-utils = [
|
|
"reth-node-builder/test-utils",
|
|
"reth-chainspec/test-utils",
|
|
"reth-consensus/test-utils",
|
|
"reth-network/test-utils",
|
|
"reth-payload-builder/test-utils",
|
|
"reth-primitives/test-utils",
|
|
"reth-revm/test-utils",
|
|
"reth-db/test-utils",
|
|
"reth-provider/test-utils",
|
|
"reth-transaction-pool/test-utils",
|
|
"reth-trie-db/test-utils",
|
|
"revm/test-utils",
|
|
"reth-evm/test-utils",
|
|
]
|