chore: disable serde-with default features (#13002)

This commit is contained in:
Matthias Seitz
2024-11-29 11:51:44 +01:00
committed by GitHub
parent 4d65b2f5db
commit b6ba822cc3
4 changed files with 7 additions and 4 deletions

View File

@ -517,7 +517,7 @@ rustc-hash = { version = "2.0", default-features = false }
schnellru = "0.2" schnellru = "0.2"
serde = { version = "1.0", default-features = false } serde = { version = "1.0", default-features = false }
serde_json = "1.0.94" serde_json = "1.0.94"
serde_with = "3.3.0" serde_with = { version = "3", default-features = false, features = ["macros"] }
sha2 = { version = "0.10", default-features = false } sha2 = { version = "0.10", default-features = false }
shellexpand = "3.0.0" shellexpand = "3.0.0"
smallvec = "1" smallvec = "1"

View File

@ -64,4 +64,5 @@ std = [
"serde?/std", "serde?/std",
"reth-primitives-traits/std", "reth-primitives-traits/std",
"alloy-consensus/std", "alloy-consensus/std",
"serde_with?/std"
] ]

View File

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

View File

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