Files
nanoreth/crates/optimism/hardforks/Cargo.toml
liamaharon cf4a4454ec fix: feature propagation (#11888)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
2024-10-19 20:36:11 +00:00

40 lines
670 B
TOML

[package]
name = "reth-optimism-forks"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Optimism hardforks used in op-reth"
[lints]
workspace = true
[dependencies]
# reth
reth-ethereum-forks.workspace = true
# ethereum
alloy-chains.workspace = true
alloy-primitives.workspace = true
# io
serde = { workspace = true, optional = true }
# misc
once_cell.workspace = true
[features]
default = ["std"]
std = [
"alloy-primitives/std",
"once_cell/std",
"serde?/std"
]
serde = [
"dep:serde",
"alloy-chains/serde",
"alloy-primitives/serde"
]