Skip to content

Commit

Permalink
chore: disable serde-with default features (#13002)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Nov 29, 2024
1 parent 4d65b2f commit b6ba822
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion crates/evm/execution-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ std = [
"revm/std",
"serde?/std",
"reth-primitives-traits/std",
"alloy-consensus/std",
"alloy-consensus/std",
"serde_with?/std"
]
3 changes: 2 additions & 1 deletion crates/primitives-traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ std = [
"alloy-genesis/std",
"alloy-primitives/std",
"revm-primitives/std",
"serde?/std"
"serde?/std",
"serde_with?/std"
]
test-utils = [
"arbitrary",
Expand Down
3 changes: 2 additions & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b6ba822

Please sign in to comment.