Files
nanoreth/crates/exex/exex/Cargo.toml
2024-09-30 10:25:17 +00:00

72 lines
1.8 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
alloy-eips.workspace = true
## async
futures.workspace = true
tokio-util.workspace = true
tokio.workspace = true
## misc
eyre.workspace = true
itertools.workspace = true
metrics.workspace = true
parking_lot.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
alloy-consensus.workspace = true
rand.workspace = true
secp256k1.workspace = true
tempfile.workspace = true
[features]
default = []
serde = ["reth-provider/serde", "reth-exex-types/serde"]