Files
reth/crates/optimism/storage/Cargo.toml
Soubhik Singha Mahapatra 0a4c21527c chore: used Opstorage impl for optimism (#16594)
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>
2025-06-04 14:25:14 +00:00

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