mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
55 lines
1.2 KiB
TOML
55 lines
1.2 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
|
|
reth-rpc-types.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-node-api.workspace = true
|
|
|
|
# ethereum
|
|
alloy-rlp.workspace = true
|
|
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
|
|
|
|
[dev-dependencies]
|
|
revm.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
test-utils = []
|
|
optimism = [
|
|
"reth-primitives/optimism",
|
|
"reth-rpc-types/optimism",
|
|
"reth-rpc-types-compat/optimism",
|
|
"reth-interfaces/optimism",
|
|
"reth-transaction-pool/optimism",
|
|
]
|