mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
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, optional = true }
|
|
reth-chain-state.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-ethereum-engine-primitives.workspace = true
|
|
|
|
# alloy
|
|
alloy-primitives = { workspace = true, optional = true }
|
|
alloy-rpc-types = { workspace = true, features = ["engine"] }
|
|
|
|
# async
|
|
async-trait.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-stream.workspace = true
|
|
futures-util.workspace = true
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-primitives.workspace = true
|
|
alloy-primitives.workspace = true
|
|
revm.workspace = true
|
|
|
|
[features]
|
|
test-utils = [
|
|
"alloy-primitives",
|
|
"reth-chain-state/test-utils",
|
|
"reth-primitives/test-utils",
|
|
"revm/test-utils"
|
|
]
|