From c80f9238d77ec40a4fbfbe1cd19522214ab00282 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 18 May 2018 12:34:36 -0700 Subject: [PATCH] Link to i128 announcement --- serde/build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/serde/build.rs b/serde/build.rs index c66bf0e4..cc191484 100644 --- a/serde/build.rs +++ b/serde/build.rs @@ -33,6 +33,8 @@ fn main() { Err(_) => return, }; + // 128-bit integers stabilized in Rust 1.26: + // https://blog.rust-lang.org/2018/05/10/Rust-1.26.html if minor >= 26 { println!("cargo:rustc-cfg=integer128"); }