mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
65 lines
1.8 KiB
TOML
65 lines
1.8 KiB
TOML
[package]
|
|
name = "reth-optimism-payload-builder"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "A payload builder for op-reth that builds optimistic payloads."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-revm = { workspace = true, features = ["witness"] }
|
|
reth-transaction-pool.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-execution-types.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-payload-builder-primitives.workspace = true
|
|
reth-payload-util.workspace = true
|
|
reth-payload-primitives = { workspace = true, features = ["op"] }
|
|
reth-basic-payload-builder.workspace = true
|
|
reth-chain-state.workspace = true
|
|
|
|
# op-reth
|
|
reth-optimism-chainspec.workspace = true
|
|
reth-optimism-consensus.workspace = true
|
|
reth-optimism-evm.workspace = true
|
|
reth-optimism-forks.workspace = true
|
|
reth-optimism-primitives.workspace = true
|
|
|
|
# ethereum
|
|
revm.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-rlp.workspace = true
|
|
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }
|
|
op-alloy-consensus.workspace = true
|
|
alloy-rpc-types-engine.workspace = true
|
|
alloy-rpc-types-debug.workspace = true
|
|
alloy-consensus.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
sha2.workspace = true
|
|
|
|
[features]
|
|
optimism = [
|
|
"reth-primitives/optimism",
|
|
"reth-provider/optimism",
|
|
"reth-optimism-evm/optimism",
|
|
"revm/optimism",
|
|
"reth-execution-types/optimism",
|
|
"reth-optimism-consensus/optimism",
|
|
"reth-optimism-primitives/optimism"
|
|
]
|