mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: disable chainspec default features (#13583)
This commit is contained in:
@ -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" }
|
||||
|
||||
@ -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"
|
||||
]
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
Reference in New Issue
Block a user