Files
nanoreth/crates/payload/basic/Cargo.toml
2023-05-15 17:06:10 -07:00

33 lines
893 B
TOML

[package]
name = "reth-basic-payload-builder"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/reth"
readme = "README.md"
description = "A basic payload builder for reth that uses the txpool API to build payloads."
[dependencies]
## reth
reth-primitives = { path = "../../primitives" }
reth-revm = { path = "../../revm" }
reth-transaction-pool = { path = "../../transaction-pool" }
reth-rlp = { path = "../../rlp" }
reth-provider = { path = "../../storage/provider" }
reth-payload-builder = { path = "../builder" }
reth-tasks = { path = "../../tasks" }
## ethereum
revm = { version = "3" }
# metrics
metrics = "0.20.1"
reth-metrics-derive = { path = "../../metrics/metrics-derive" }
## async
tokio = { version = "1", features = ["sync", "time"] }
futures-core = "0.3"
futures-util = "0.3"
## misc
tracing = { workspace = true }