mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: disable storage-api default features (#14474)
This commit is contained in:
@ -413,7 +413,7 @@ reth-stages-api = { path = "crates/stages/api" }
|
|||||||
reth-stages-types = { path = "crates/stages/types", default-features = false }
|
reth-stages-types = { path = "crates/stages/types", default-features = false }
|
||||||
reth-static-file = { path = "crates/static-file/static-file" }
|
reth-static-file = { path = "crates/static-file/static-file" }
|
||||||
reth-static-file-types = { path = "crates/static-file/types", default-features = false }
|
reth-static-file-types = { path = "crates/static-file/types", default-features = false }
|
||||||
reth-storage-api = { path = "crates/storage/storage-api" }
|
reth-storage-api = { path = "crates/storage/storage-api", default-features = false }
|
||||||
reth-storage-errors = { path = "crates/storage/errors", default-features = false }
|
reth-storage-errors = { path = "crates/storage/errors", default-features = false }
|
||||||
reth-tasks = { path = "crates/tasks" }
|
reth-tasks = { path = "crates/tasks" }
|
||||||
reth-testing-utils = { path = "testing/testing-utils" }
|
reth-testing-utils = { path = "testing/testing-utils" }
|
||||||
|
|||||||
@ -47,6 +47,7 @@ std = [
|
|||||||
"reth-consensus?/std",
|
"reth-consensus?/std",
|
||||||
"reth-consensus-common?/std",
|
"reth-consensus-common?/std",
|
||||||
"alloy-rpc-types-eth?/std",
|
"alloy-rpc-types-eth?/std",
|
||||||
|
"reth-storage-api?/std",
|
||||||
]
|
]
|
||||||
arbitrary = [
|
arbitrary = [
|
||||||
"std",
|
"std",
|
||||||
|
|||||||
@ -12,7 +12,7 @@ workspace = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# reth
|
# reth
|
||||||
reth-storage-api.workspace = true
|
reth-storage-api = { workspace = true, features = ["std"] }
|
||||||
reth-network-api.workspace = true
|
reth-network-api.workspace = true
|
||||||
reth-stages.workspace = true
|
reth-stages.workspace = true
|
||||||
reth-prune-types.workspace = true
|
reth-prune-types.workspace = true
|
||||||
|
|||||||
@ -20,7 +20,7 @@ reth-primitives-traits = { workspace = true, features = ["reth-codec"] }
|
|||||||
reth-fs-util.workspace = true
|
reth-fs-util.workspace = true
|
||||||
reth-errors.workspace = true
|
reth-errors.workspace = true
|
||||||
reth-storage-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-network-p2p.workspace = true
|
||||||
reth-db = { workspace = true, features = ["mdbx"] }
|
reth-db = { workspace = true, features = ["mdbx"] }
|
||||||
reth-db-api.workspace = true
|
reth-db-api.workspace = true
|
||||||
|
|||||||
Reference in New Issue
Block a user