mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-01 02:25:24 -05:00
Co-authored-by: Roberto Bayardo <bayardo@alum.mit.edu> Co-authored-by: refcell.eth <abigger87@gmail.com> Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: refcell <refcell@oplabs.co> Co-authored-by: nicolas <48695862+merklefruit@users.noreply.github.com>
47 lines
984 B
TOML
47 lines
984 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-transaction-pool.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-rpc-types-compat.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
|
|
|
|
[features]
|
|
test-utils = []
|
|
optimism = [
|
|
"reth-primitives/optimism",
|
|
"reth-rpc-types/optimism",
|
|
"reth-interfaces/optimism"
|
|
]
|