chore: disable storage-api default features (#14474)

This commit is contained in:
Matthias Seitz
2025-02-13 22:05:19 +01:00
committed by GitHub
parent b71934237d
commit 270aefe900
4 changed files with 4 additions and 3 deletions

View File

@ -47,6 +47,7 @@ std = [
"reth-consensus?/std",
"reth-consensus-common?/std",
"alloy-rpc-types-eth?/std",
"reth-storage-api?/std",
]
arbitrary = [
"std",

View File

@ -12,7 +12,7 @@ workspace = true
[dependencies]
# reth
reth-storage-api.workspace = true
reth-storage-api = { workspace = true, features = ["std"] }
reth-network-api.workspace = true
reth-stages.workspace = true
reth-prune-types.workspace = true

View File

@ -20,7 +20,7 @@ reth-primitives-traits = { workspace = true, features = ["reth-codec"] }
reth-fs-util.workspace = true
reth-errors.workspace = true
reth-storage-errors.workspace = true
reth-storage-api.workspace = true
reth-storage-api = { workspace = true, features = ["std"] }
reth-network-p2p.workspace = true
reth-db = { workspace = true, features = ["mdbx"] }
reth-db-api.workspace = true