mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-engine-local"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
exclude.workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-beacon-consensus.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
reth-engine-service.workspace = true
|
|
reth-engine-tree.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-ethereum-engine-primitives.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-payload-validator.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-prune.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-stages-api.workspace = true
|
|
|
|
# alloy
|
|
alloy-primitives.workspace = true
|
|
alloy-rpc-types-engine.workspace = true
|
|
|
|
# async
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
futures-util.workspace = true
|
|
|
|
# misc
|
|
eyre.workspace = true
|
|
tracing.workspace = true
|
|
|
|
op-alloy-rpc-types-engine = { workspace = true, optional = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
optimism = [
|
|
"op-alloy-rpc-types-engine",
|
|
"reth-beacon-consensus/optimism",
|
|
"reth-provider/optimism",
|
|
]
|