From d4da1d250deb0fa08686e17afaf6ab22ea2173d8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 8 Sep 2018 12:09:40 -0700 Subject: [PATCH] Remove i128 feature gate These features have been stabilized in Rust 1.26. --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9524f52..0de3a53 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,8 +10,6 @@ #![cfg_attr(not(feature = "std"), no_std)] -#![cfg_attr(feature = "i128", feature(i128_type, i128))] - #![cfg_attr(feature = "cargo-clippy", allow(cast_lossless, unreadable_literal))] #[cfg(feature = "i128")]