mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-31 01:58:17 -05:00
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> Co-authored-by: Oliver Nordbjerg <onbjerg@users.noreply.github.com>
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-node-optimism"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-basic-payload-builder.workspace = true
|
|
reth-optimism-payload-builder.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-rpc.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-node-builder.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-network.workspace = true
|
|
revm.workspace = true
|
|
|
|
# io
|
|
serde.workspace = true
|
|
eyre.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-db.workspace = true
|
|
|
|
[features]
|
|
optimism = [
|
|
"reth-network/optimism",
|
|
"reth-primitives/optimism",
|
|
"reth-transaction-pool/optimism",
|
|
"reth-rpc-types/optimism",
|
|
"reth-provider/optimism",
|
|
"reth-rpc-types-compat/optimism",
|
|
"reth-rpc/optimism",
|
|
"reth-optimism-payload-builder/optimism",
|
|
]
|