chore: disable op- default features (#13511)

This commit is contained in:
Matthias Seitz
2024-12-23 09:12:51 +01:00
committed by GitHub
parent f5fdef895f
commit 6e140108f0
9 changed files with 19 additions and 14 deletions

2
Cargo.lock generated
View File

@ -5535,11 +5535,9 @@ dependencies = [
"alloy-rpc-types-engine", "alloy-rpc-types-engine",
"alloy-serde", "alloy-serde",
"derive_more", "derive_more",
"ethereum_ssz",
"op-alloy-consensus", "op-alloy-consensus",
"op-alloy-protocol", "op-alloy-protocol",
"serde", "serde",
"snap",
"thiserror 2.0.9", "thiserror 2.0.9",
] ]

View File

@ -477,11 +477,11 @@ alloy-transport-ipc = { version = "0.8.3", default-features = false }
alloy-transport-ws = { version = "0.8.3", default-features = false } alloy-transport-ws = { version = "0.8.3", default-features = false }
# op # op
op-alloy-rpc-types = "0.8.4" op-alloy-rpc-types = { version = "0.8.4", default-features = false }
op-alloy-rpc-types-engine = "0.8.4" op-alloy-rpc-types-engine = { version = "0.8.4", default-features = false }
op-alloy-rpc-jsonrpsee = "0.8.4" op-alloy-rpc-jsonrpsee = { version = "0.8.4", default-features = false }
op-alloy-network = "0.8.4" op-alloy-network = { version = "0.8.4", default-features = false }
op-alloy-consensus = "0.8.4" op-alloy-consensus = { version = "0.8.4", default-features = false }
# misc # misc
aquamarine = "0.6" aquamarine = "0.6"

View File

@ -61,5 +61,6 @@ std = [
"once_cell/std", "once_cell/std",
"derive_more/std", "derive_more/std",
"reth-network-peers/std", "reth-network-peers/std",
"thiserror/std" "thiserror/std",
"op-alloy-consensus/std"
] ]

View File

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

View File

@ -39,7 +39,7 @@ revm.workspace = true
alloy-eips.workspace = true alloy-eips.workspace = true
alloy-primitives.workspace = true alloy-primitives.workspace = true
alloy-rlp.workspace = true alloy-rlp.workspace = true
op-alloy-rpc-types-engine.workspace = true op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }
op-alloy-consensus.workspace = true op-alloy-consensus.workspace = true
alloy-rpc-types-engine.workspace = true alloy-rpc-types-engine.workspace = true
alloy-rpc-types-debug.workspace = true alloy-rpc-types-debug.workspace = true

View File

@ -64,7 +64,8 @@ std = [
"revm-primitives/std", "revm-primitives/std",
"secp256k1?/std", "secp256k1?/std",
"alloy-rlp/std", "alloy-rlp/std",
"reth-zstd-compressors?/std" "reth-zstd-compressors?/std",
"op-alloy-consensus/std"
] ]
reth-codec = [ reth-codec = [
"dep:reth-codecs", "dep:reth-codecs",

View File

@ -88,7 +88,8 @@ std = [
"k256/std", "k256/std",
"secp256k1?/std", "secp256k1?/std",
"thiserror/std", "thiserror/std",
"alloy-trie/std" "alloy-trie/std",
"op-alloy-consensus?/std"
] ]
secp256k1 = ["dep:secp256k1"] secp256k1 = ["dep:secp256k1"]
test-utils = [ test-utils = [

View File

@ -115,7 +115,9 @@ std = [
"derive_more/std", "derive_more/std",
"reth-zstd-compressors?/std", "reth-zstd-compressors?/std",
"secp256k1?/std", "secp256k1?/std",
"reth-trie-common/std" "reth-trie-common/std",
"op-alloy-consensus?/std",
"op-alloy-rpc-types?/std"
] ]
reth-codec = [ reth-codec = [
"dep:reth-codecs", "dep:reth-codecs",

View File

@ -59,7 +59,8 @@ std = [
"alloy-eips?/std", "alloy-eips?/std",
"alloy-genesis?/std", "alloy-genesis?/std",
"alloy-trie?/std", "alloy-trie?/std",
"serde/std" "serde/std",
"op-alloy-consensus?/std"
] ]
alloy = [ alloy = [
"dep:alloy-consensus", "dep:alloy-consensus",