chore: disable chainspec default features (#13583)

This commit is contained in:
Matthias Seitz
2024-12-28 18:29:59 +01:00
committed by GitHub
parent 5a21bda0e8
commit ad89056e48
6 changed files with 11 additions and 6 deletions

View File

@ -309,7 +309,7 @@ reth-bench = { path = "bin/reth-bench" }
reth-blockchain-tree = { path = "crates/blockchain-tree" }
reth-blockchain-tree-api = { path = "crates/blockchain-tree-api" }
reth-chain-state = { path = "crates/chain-state" }
reth-chainspec = { path = "crates/chainspec" }
reth-chainspec = { path = "crates/chainspec", default-features = false }
reth-cli = { path = "crates/cli/cli" }
reth-cli-commands = { path = "crates/cli/commands" }
reth-cli-runner = { path = "crates/cli/runner" }

View File

@ -54,5 +54,6 @@ std = [
"secp256k1/std",
"reth-ethereum-forks/std",
"serde_json/std",
"reth-primitives-traits/std"
"reth-primitives-traits/std",
"reth-chainspec/std"
]

View File

@ -57,7 +57,8 @@ std = [
"alloy-consensus/std",
"revm-primitives/std",
"revm/std",
"reth-ethereum-forks/std"
"reth-ethereum-forks/std",
"reth-chainspec/std"
]
test-utils = [
"dep:parking_lot",

View File

@ -60,7 +60,8 @@ std = [
"reth-primitives/std",
"reth-primitives-traits/std",
"serde?/std",
"thiserror/std"
"thiserror/std",
"reth-chainspec/std"
]
arbitrary = [
"reth-primitives/arbitrary",

View File

@ -72,7 +72,8 @@ std = [
"derive_more/std",
"reth-optimism-forks/std",
"thiserror/std",
"op-alloy-consensus/std"
"op-alloy-consensus/std",
"reth-chainspec/std"
]
optimism = [
"reth-primitives/optimism",

View File

@ -118,7 +118,8 @@ std = [
"reth-trie-common/std",
"op-alloy-consensus?/std",
"op-alloy-rpc-types?/std",
"serde_json/std"
"serde_json/std",
"reth-chainspec/std"
]
reth-codec = [
"dep:reth-codecs",