cachore: disable alloy-chains default features (#13039)

This commit is contained in:
Matthias Seitz
2024-11-30 17:22:21 +01:00
committed by GitHub
parent 9b1d676438
commit 00b3447947
2 changed files with 3 additions and 2 deletions

View File

@ -429,7 +429,7 @@ revm-primitives = { version = "14.0.0", features = [
], default-features = false } ], default-features = false }
# eth # eth
alloy-chains = "0.1.32" 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 = "0.3.4"

View File

@ -30,7 +30,8 @@ default = ["std"]
std = [ std = [
"alloy-primitives/std", "alloy-primitives/std",
"once_cell/std", "once_cell/std",
"serde?/std" "serde?/std",
"alloy-chains/std"
] ]
serde = [ serde = [
"dep:serde", "dep:serde",