Files
reth/crates/optimism/storage/Cargo.toml
2025-09-17 23:51:27 +00:00

35 lines
780 B
TOML

[package]
name = "reth-optimism-storage"
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-optimism-primitives = { workspace = true, features = ["serde", "reth-codec"] }
reth-storage-api = { workspace = true, features = ["db-api"] }
# ethereum
alloy-consensus.workspace = true
[dev-dependencies]
reth-codecs = { workspace = true, features = ["test-utils"] }
reth-prune-types.workspace = true
reth-stages-types.workspace = true
[features]
default = ["std"]
std = [
"reth-storage-api/std",
"reth-prune-types/std",
"reth-stages-types/std",
"alloy-consensus/std",
"reth-optimism-primitives/std",
]