[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 # ethereum revm.workspace = true alloy-eips.workspace = true alloy-primitives.workspace = true alloy-rlp.workspace = true op-alloy-rpc-types-engine.workspace = true op-alloy-consensus.workspace = true alloy-rpc-types-engine.workspace = true alloy-rpc-types-debug.workspace = true alloy-consensus.workspace = true # misc 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" ]