Files
nanoreth/crates/payload/builder/Cargo.toml
2024-09-19 13:07:15 +00:00

47 lines
1001 B
TOML

[package]
name = "reth-payload-builder"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "reth payload builder"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives.workspace = true
reth-rpc-types.workspace = true
reth-transaction-pool.workspace = true
reth-errors.workspace = true
reth-provider.workspace = true
reth-payload-primitives.workspace = true
reth-ethereum-engine-primitives.workspace = true
reth-chain-state = { workspace = true, optional = true }
# alloy
alloy-primitives.workspace = true
# async
tokio = { workspace = true, features = ["sync"] }
tokio-stream.workspace = true
futures-util.workspace = true
pin-project.workspace = true
# metrics
reth-metrics.workspace = true
metrics.workspace = true
# misc
thiserror.workspace = true
tracing.workspace = true
[dev-dependencies]
revm.workspace = true
[features]
test-utils = ["reth-chain-state"]