mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: disable alloy-rlp default features (#13042)
This commit is contained in:
@ -432,7 +432,7 @@ revm-primitives = { version = "14.0.0", features = [
|
|||||||
alloy-chains = { version = "0.1.32", default-features = false }
|
alloy-chains = { version = "0.1.32", default-features = false }
|
||||||
alloy-dyn-abi = "0.8.11"
|
alloy-dyn-abi = "0.8.11"
|
||||||
alloy-primitives = { version = "0.8.11", default-features = false }
|
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-sol-types = "0.8.11"
|
||||||
alloy-trie = { version = "0.7", default-features = false }
|
alloy-trie = { version = "0.7", default-features = false }
|
||||||
|
|
||||||
|
|||||||
@ -47,7 +47,8 @@ std = [
|
|||||||
"alloy-trie/std",
|
"alloy-trie/std",
|
||||||
"reth-primitives-traits/std",
|
"reth-primitives-traits/std",
|
||||||
"alloy-consensus/std",
|
"alloy-consensus/std",
|
||||||
"once_cell/std"
|
"once_cell/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
arbitrary = [
|
arbitrary = [
|
||||||
"alloy-chains/arbitrary",
|
"alloy-chains/arbitrary",
|
||||||
|
|||||||
@ -60,6 +60,7 @@ std = [
|
|||||||
"rustc-hash/std",
|
"rustc-hash/std",
|
||||||
"alloy-consensus/std",
|
"alloy-consensus/std",
|
||||||
"once_cell/std",
|
"once_cell/std",
|
||||||
"serde?/std"
|
"serde?/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
rustc-hash = ["dep:rustc-hash"]
|
rustc-hash = ["dep:rustc-hash"]
|
||||||
|
|||||||
@ -30,5 +30,6 @@ std = [
|
|||||||
"reth-consensus/std",
|
"reth-consensus/std",
|
||||||
"alloy-eips/std",
|
"alloy-eips/std",
|
||||||
"alloy-primitives/std",
|
"alloy-primitives/std",
|
||||||
"revm-primitives/std"
|
"revm-primitives/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -44,13 +44,14 @@ arbitrary.workspace = true
|
|||||||
[features]
|
[features]
|
||||||
default = ["std", "reth-codec"]
|
default = ["std", "reth-codec"]
|
||||||
std = [
|
std = [
|
||||||
"reth-primitives-traits/std",
|
"reth-primitives-traits/std",
|
||||||
"reth-primitives/std",
|
"reth-primitives/std",
|
||||||
"reth-codecs/std",
|
"reth-codecs/std",
|
||||||
"alloy-consensus/std",
|
"alloy-consensus/std",
|
||||||
"alloy-eips/std",
|
"alloy-eips/std",
|
||||||
"alloy-primitives/std",
|
"alloy-primitives/std",
|
||||||
"serde/std",
|
"serde/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
reth-codec = [
|
reth-codec = [
|
||||||
"dep:reth-codecs",
|
"dep:reth-codecs",
|
||||||
|
|||||||
@ -62,7 +62,8 @@ std = [
|
|||||||
"alloy-primitives/std",
|
"alloy-primitives/std",
|
||||||
"revm-primitives/std",
|
"revm-primitives/std",
|
||||||
"serde?/std",
|
"serde?/std",
|
||||||
"serde_with?/std"
|
"serde_with?/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
test-utils = [
|
test-utils = [
|
||||||
"arbitrary",
|
"arbitrary",
|
||||||
|
|||||||
@ -104,7 +104,8 @@ std = [
|
|||||||
"secp256k1?/std",
|
"secp256k1?/std",
|
||||||
"serde/std",
|
"serde/std",
|
||||||
"alloy-trie/std",
|
"alloy-trie/std",
|
||||||
"serde_with?/std"
|
"serde_with?/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
reth-codec = [
|
reth-codec = [
|
||||||
"dep:reth-codecs",
|
"dep:reth-codecs",
|
||||||
|
|||||||
@ -28,5 +28,6 @@ default = ["std"]
|
|||||||
std = [
|
std = [
|
||||||
"reth-primitives/std",
|
"reth-primitives/std",
|
||||||
"alloy-eips/std",
|
"alloy-eips/std",
|
||||||
"alloy-primitives/std"
|
"alloy-primitives/std",
|
||||||
|
"alloy-rlp/std"
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user