Files
nanoreth/crates/engine/util/Cargo.toml
Arsenii Kulikov 336c3d1fac feat: alloy-evm and new revm integration (#14021)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: rakita <rakita@users.noreply.github.com>
2025-02-17 19:59:23 +00:00

59 lines
1.2 KiB
TOML

[package]
name = "reth-engine-util"
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-primitives.workspace = true
reth-primitives-traits.workspace = true
reth-errors.workspace = true
reth-chainspec.workspace = true
reth-consensus-common.workspace = true
reth-fs-util.workspace = true
reth-engine-primitives.workspace = true
reth-payload-validator.workspace = true
reth-evm.workspace = true
reth-revm.workspace = true
reth-provider.workspace = true
reth-ethereum-forks.workspace = true
revm-primitives.workspace = true
revm-database.workspace = true
reth-trie.workspace = true
reth-payload-primitives.workspace = true
# alloy
alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-rpc-types-engine.workspace = true
alloy-consensus.workspace = true
# async
tokio = { workspace = true, default-features = false }
tokio-util.workspace = true
pin-project.workspace = true
futures.workspace = true
# io
serde.workspace = true
serde_json.workspace = true
# misc
eyre.workspace = true
itertools.workspace = true
# tracing
tracing.workspace = true
[features]
optimism = [
"reth-provider/optimism",
]