serde/integer128.rs
1#[macro_export]
2#[deprecated = "
3This macro has no effect on any version of Serde released in the past 2 years.
4It was used long ago in crates that needed to support Rustc older than 1.26.0,
5or Emscripten targets older than 1.40.0, which did not yet have 128-bit integer
6support. These days Serde requires a Rust compiler newer than that so 128-bit
7integers are always supported.
8"]
9#[doc(hidden)]
10macro_rules! serde_if_integer128 {
11 ($($tt:tt)*) => {
12 $($tt)*
13 };
14}