mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
43 lines
921 B
TOML
43 lines
921 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-engine-primitives.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-ethereum-engine-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
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
revm.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
test-utils = [] |