mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-10 15:05:24 -05:00
50 lines
1.2 KiB
TOML
50 lines
1.2 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-chainspec.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-optimism-forks.workspace = true
|
|
reth-optimism-primitives = { workspace = true, features = ["serde", "reth-codec"] }
|
|
reth-trie-common.workspace = true
|
|
reth-storage-api = { workspace = true, features = ["db-api"] }
|
|
|
|
# ethereum
|
|
alloy-eips.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-consensus.workspace = true
|
|
revm.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-trie-common/std",
|
|
"reth-storage-api/std",
|
|
"alloy-primitives/std",
|
|
"revm/std",
|
|
"reth-prune-types/std",
|
|
"reth-stages-types/std",
|
|
"alloy-consensus/std",
|
|
"reth-chainspec/std",
|
|
"reth-optimism-forks/std",
|
|
"reth-optimism-primitives/std",
|
|
"reth-primitives-traits/std",
|
|
"alloy-eips/std",
|
|
]
|