mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
Disable default features for optimism crates in workspace manifest (#14467)
This commit is contained in:
10
Cargo.toml
10
Cargo.toml
@ -348,7 +348,7 @@ reth-ethereum = { path = "crates/ethereum/reth" }
|
||||
reth-etl = { path = "crates/etl" }
|
||||
reth-evm = { path = "crates/evm" }
|
||||
reth-evm-ethereum = { path = "crates/ethereum/evm" }
|
||||
reth-optimism-evm = { path = "crates/optimism/evm" }
|
||||
reth-optimism-evm = { path = "crates/optimism/evm", default-features = false }
|
||||
reth-execution-errors = { path = "crates/evm/execution-errors", default-features = false }
|
||||
reth-execution-types = { path = "crates/evm/execution-types", default-features = false }
|
||||
reth-exex = { path = "crates/exex/exex" }
|
||||
@ -376,14 +376,14 @@ reth-node-events = { path = "crates/node/events" }
|
||||
reth-node-metrics = { path = "crates/node/metrics" }
|
||||
reth-optimism-node = { path = "crates/optimism/node" }
|
||||
reth-node-types = { path = "crates/node/types" }
|
||||
reth-op = { path = "crates/optimism/reth" }
|
||||
reth-optimism-chainspec = { path = "crates/optimism/chainspec" }
|
||||
reth-op = { path = "crates/optimism/reth", default-features = false }
|
||||
reth-optimism-chainspec = { path = "crates/optimism/chainspec", default-features = false }
|
||||
reth-optimism-chain-resitry = { path = "crates/optimism/chain-registry" }
|
||||
reth-optimism-cli = { path = "crates/optimism/cli" }
|
||||
reth-optimism-consensus = { path = "crates/optimism/consensus" }
|
||||
reth-optimism-consensus = { path = "crates/optimism/consensus", default-features = false }
|
||||
reth-optimism-forks = { path = "crates/optimism/hardforks", default-features = false }
|
||||
reth-optimism-payload-builder = { path = "crates/optimism/payload" }
|
||||
reth-optimism-primitives = { path = "crates/optimism/primitives" }
|
||||
reth-optimism-primitives = { path = "crates/optimism/primitives", default-features = false }
|
||||
reth-optimism-rpc = { path = "crates/optimism/rpc" }
|
||||
reth-optimism-storage = { path = "crates/optimism/storage" }
|
||||
reth-optimism-txpool = { path = "crates/optimism/txpool" }
|
||||
|
||||
@ -71,6 +71,7 @@ std = [
|
||||
"reth-chainspec/std",
|
||||
"reth-optimism-consensus/std",
|
||||
"reth-consensus-common/std",
|
||||
"reth-optimism-chainspec/std",
|
||||
"reth-execution-errors/std",
|
||||
"reth-execution-types/std",
|
||||
]
|
||||
|
||||
@ -104,6 +104,7 @@ serde-bincode-compat = [
|
||||
"reth-primitives-traits/serde-bincode-compat",
|
||||
]
|
||||
arbitrary = [
|
||||
"std",
|
||||
"dep:arbitrary",
|
||||
"dep:secp256k1",
|
||||
"secp256k1?/rand",
|
||||
|
||||
@ -39,10 +39,14 @@ reth-optimism-rpc = { workspace = true, optional = true }
|
||||
default = ["std"]
|
||||
std = [
|
||||
"reth-chainspec/std",
|
||||
"reth-optimism-primitives/std",
|
||||
"reth-primitives-traits/std",
|
||||
"reth-consensus?/std",
|
||||
"reth-consensus-common?/std",
|
||||
"reth-optimism-chainspec/std",
|
||||
"reth-optimism-consensus?/std",
|
||||
"reth-optimism-evm?/std",
|
||||
"reth-optimism-primitives/std",
|
||||
"reth-primitives-traits/std",
|
||||
"reth-storage-api?/std",
|
||||
]
|
||||
arbitrary = [
|
||||
"std",
|
||||
|
||||
@ -33,12 +33,13 @@ alloy-consensus.workspace = true
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"reth-primitives-traits/std",
|
||||
"alloy-primitives/std",
|
||||
"revm/std",
|
||||
"alloy-consensus/std",
|
||||
"alloy-primitives/std",
|
||||
"reth-ethereum-forks/std",
|
||||
"reth-primitives-traits/std",
|
||||
"reth-storage-errors/std",
|
||||
"revm/std",
|
||||
"reth-storage-api/std",
|
||||
]
|
||||
witness = ["dep:reth-trie"]
|
||||
test-utils = [
|
||||
|
||||
Reference in New Issue
Block a user