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"
serde = { version = "1.0", default-features = false }
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 }
shellexpand = "3.0.0"
smallvec = "1"

View File

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

View File

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

View File

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