feat: extract serde_core out of serde

This commit is contained in:
Piotr Osiewicz
2025-05-25 20:19:56 +02:00
parent babafa54d2
commit f3869307cc
27 changed files with 898 additions and 219 deletions
+9
View File
@@ -0,0 +1,9 @@
// No longer used. Old versions of serde used this macro for supporting targets
// that did not yet have 128-bit integer support.
#[macro_export]
#[doc(hidden)]
macro_rules! serde_if_integer128 {
($($tt:tt)*) => {
$($tt)*
};
}