From fde1104487aafe7c6e2e74807e6dbdae7218bdd9 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 29 Nov 2024 09:50:28 +0100 Subject: [PATCH] chore: disable serde-with default features --- Cargo.toml | 2 +- crates/rpc-types-beacon/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6ea089a1ae6..25040171da1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -130,7 +130,7 @@ serde = { version = "1.0", default-features = false, features = [ "alloc", ] } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } -serde_with = "3.3.0" +serde_with = { version = "3", default-features = false, features = ["macros"] } # misc auto_impl = "1.2" diff --git a/crates/rpc-types-beacon/Cargo.toml b/crates/rpc-types-beacon/Cargo.toml index e89e2668e09..85eec6b6f02 100644 --- a/crates/rpc-types-beacon/Cargo.toml +++ b/crates/rpc-types-beacon/Cargo.toml @@ -29,7 +29,7 @@ ethereum_ssz_derive = { workspace = true, optional = true } ethereum_ssz = { workspace = true, optional = true } serde.workspace = true -serde_with.workspace = true +serde_with = { workspace = true, features = ["alloc"] } thiserror.workspace = true