Skip to content

Commit

Permalink
chore: disable chainspec default features (#13583)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Dec 28, 2024
1 parent 5a21bda commit ad89056
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
3 changes: 2 additions & 1 deletion crates/ethereum/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
3 changes: 2 additions & 1 deletion crates/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion crates/net/eth-wire-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion crates/optimism/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit ad89056

Please sign in to comment.