mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
67 lines
1.6 KiB
TOML
67 lines
1.6 KiB
TOML
[package]
|
|
name = "reth-exex"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Execution extensions for Reth"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
## reth
|
|
reth-chain-state.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-config.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-exex-types = { workspace = true, features = ["serde"] }
|
|
reth-fs-util.workspace = true
|
|
reth-metrics.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-primitives = { workspace = true, features = ["secp256k1"] }
|
|
reth-primitives-traits.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-prune-types.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-stages-api.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-tracing.workspace = true
|
|
|
|
# alloy
|
|
alloy-primitives.workspace = true
|
|
|
|
## async
|
|
futures.workspace = true
|
|
tokio-util.workspace = true
|
|
tokio.workspace = true
|
|
|
|
## misc
|
|
eyre.workspace = true
|
|
metrics.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-blockchain-tree.workspace = true
|
|
reth-db-api.workspace = true
|
|
reth-db-common.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-primitives-traits = { workspace = true, features = ["test-utils"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-testing-utils.workspace = true
|
|
|
|
alloy-genesis.workspace = true
|
|
|
|
secp256k1.workspace = true
|
|
tempfile.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["reth-provider/serde", "reth-exex-types/serde"]
|