mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
40 lines
901 B
TOML
40 lines
901 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"
|
|
|
|
[dependencies]
|
|
## reth
|
|
reth-primitives.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-rlp.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-revm-primitives = { path = "../../revm/revm-primitives" }
|
|
reth-rpc-types-compat.workspace = true
|
|
|
|
## ethereum
|
|
revm-primitives.workspace = true
|
|
|
|
## async
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-stream.workspace = true
|
|
futures-util.workspace = true
|
|
|
|
## metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
## misc
|
|
thiserror.workspace = true
|
|
sha2 = { version = "0.10", default-features = false }
|
|
tracing.workspace = true
|
|
|
|
[features]
|
|
test-utils = []
|