From 70e840df91092771777a7b0566919a216710573d Mon Sep 17 00:00:00 2001 From: Martin Bartlett Date: Mon, 28 Oct 2024 16:23:00 +0100 Subject: [PATCH] Tests require serde_impl (which should fix the wasm build errors) --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 4398d22e..fc38d5ac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1088,6 +1088,7 @@ impl DerefMut for AlignedBuf { } } +#[cfg(feature = "serde_impl")] //since the tested features are there to help work better with serde ... #[cfg(test)] mod tests { use crate::Deserializer;