mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
45 lines
1.1 KiB
TOML
45 lines
1.1 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
|
|
reth-transaction-pool.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-evm-optimism.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-basic-payload-builder.workspace = true
|
|
|
|
# ethereum
|
|
revm.workspace = true
|
|
alloy-rlp.workspace = true
|
|
|
|
# misc
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
sha2.workspace = true
|
|
|
|
[features]
|
|
optimism = [
|
|
"reth-chainspec/optimism",
|
|
"reth-primitives/optimism",
|
|
"reth-provider/optimism",
|
|
"reth-rpc-types-compat/optimism",
|
|
"reth-evm-optimism/optimism",
|
|
] |