mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: disable default features for engine primitives (#13939)
This commit is contained in:
@ -325,7 +325,7 @@ reth-downloaders = { path = "crates/net/downloaders" }
|
|||||||
reth-e2e-test-utils = { path = "crates/e2e-test-utils" }
|
reth-e2e-test-utils = { path = "crates/e2e-test-utils" }
|
||||||
reth-ecies = { path = "crates/net/ecies" }
|
reth-ecies = { path = "crates/net/ecies" }
|
||||||
reth-engine-local = { path = "crates/engine/local" }
|
reth-engine-local = { path = "crates/engine/local" }
|
||||||
reth-engine-primitives = { path = "crates/engine/primitives" }
|
reth-engine-primitives = { path = "crates/engine/primitives", default-features = false }
|
||||||
reth-engine-tree = { path = "crates/engine/tree" }
|
reth-engine-tree = { path = "crates/engine/tree" }
|
||||||
reth-engine-service = { path = "crates/engine/service" }
|
reth-engine-service = { path = "crates/engine/service" }
|
||||||
reth-engine-util = { path = "crates/engine/util" }
|
reth-engine-util = { path = "crates/engine/util" }
|
||||||
@ -334,7 +334,7 @@ reth-eth-wire = { path = "crates/net/eth-wire" }
|
|||||||
reth-eth-wire-types = { path = "crates/net/eth-wire-types" }
|
reth-eth-wire-types = { path = "crates/net/eth-wire-types" }
|
||||||
reth-ethereum-cli = { path = "crates/ethereum/cli" }
|
reth-ethereum-cli = { path = "crates/ethereum/cli" }
|
||||||
reth-ethereum-consensus = { path = "crates/ethereum/consensus" }
|
reth-ethereum-consensus = { path = "crates/ethereum/consensus" }
|
||||||
reth-ethereum-engine-primitives = { path = "crates/ethereum/engine-primitives" }
|
reth-ethereum-engine-primitives = { path = "crates/ethereum/engine-primitives", default-features = false }
|
||||||
reth-ethereum-forks = { path = "crates/ethereum-forks", default-features = false }
|
reth-ethereum-forks = { path = "crates/ethereum-forks", default-features = false }
|
||||||
reth-ethereum-payload-builder = { path = "crates/ethereum/payload" }
|
reth-ethereum-payload-builder = { path = "crates/ethereum/payload" }
|
||||||
reth-ethereum-primitives = { path = "crates/ethereum/primitives", default-features = false }
|
reth-ethereum-primitives = { path = "crates/ethereum/primitives", default-features = false }
|
||||||
|
|||||||
@ -45,4 +45,5 @@ std = [
|
|||||||
"serde/std",
|
"serde/std",
|
||||||
"sha2/std",
|
"sha2/std",
|
||||||
"serde_json/std",
|
"serde_json/std",
|
||||||
|
"reth-engine-primitives/std"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -23,4 +23,5 @@ default = ["std"]
|
|||||||
std = [
|
std = [
|
||||||
"reth-primitives-traits/std",
|
"reth-primitives-traits/std",
|
||||||
"reth-chainspec/std",
|
"reth-chainspec/std",
|
||||||
|
"reth-engine-primitives/std"
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user