chore: disable alloy-rlp default features (#13042)

This commit is contained in:
Matthias Seitz
2024-11-30 18:40:26 +01:00
committed by GitHub
parent 4634625181
commit 3dc6f506b0
8 changed files with 21 additions and 14 deletions

View File

@ -432,7 +432,7 @@ revm-primitives = { version = "14.0.0", features = [
alloy-chains = { version = "0.1.32", default-features = false }
alloy-dyn-abi = "0.8.11"
alloy-primitives = { version = "0.8.11", default-features = false }
alloy-rlp = "0.3.4"
alloy-rlp = { version = "0.3.4", default-features = false }
alloy-sol-types = "0.8.11"
alloy-trie = { version = "0.7", default-features = false }

View File

@ -47,7 +47,8 @@ std = [
"alloy-trie/std",
"reth-primitives-traits/std",
"alloy-consensus/std",
"once_cell/std"
"once_cell/std",
"alloy-rlp/std"
]
arbitrary = [
"alloy-chains/arbitrary",

View File

@ -60,6 +60,7 @@ std = [
"rustc-hash/std",
"alloy-consensus/std",
"once_cell/std",
"serde?/std"
"serde?/std",
"alloy-rlp/std"
]
rustc-hash = ["dep:rustc-hash"]

View File

@ -30,5 +30,6 @@ std = [
"reth-consensus/std",
"alloy-eips/std",
"alloy-primitives/std",
"revm-primitives/std"
"revm-primitives/std",
"alloy-rlp/std"
]

View File

@ -44,13 +44,14 @@ arbitrary.workspace = true
[features]
default = ["std", "reth-codec"]
std = [
"reth-primitives-traits/std",
"reth-primitives/std",
"reth-codecs/std",
"alloy-consensus/std",
"alloy-eips/std",
"alloy-primitives/std",
"serde/std",
"reth-primitives-traits/std",
"reth-primitives/std",
"reth-codecs/std",
"alloy-consensus/std",
"alloy-eips/std",
"alloy-primitives/std",
"serde/std",
"alloy-rlp/std"
]
reth-codec = [
"dep:reth-codecs",

View File

@ -62,7 +62,8 @@ std = [
"alloy-primitives/std",
"revm-primitives/std",
"serde?/std",
"serde_with?/std"
"serde_with?/std",
"alloy-rlp/std"
]
test-utils = [
"arbitrary",

View File

@ -104,7 +104,8 @@ std = [
"secp256k1?/std",
"serde/std",
"alloy-trie/std",
"serde_with?/std"
"serde_with?/std",
"alloy-rlp/std"
]
reth-codec = [
"dep:reth-codecs",

View File

@ -28,5 +28,6 @@ default = ["std"]
std = [
"reth-primitives/std",
"alloy-eips/std",
"alloy-primitives/std"
"alloy-primitives/std",
"alloy-rlp/std"
]