From 965103be61f7e1264c66a047029a0b026e113b47 Mon Sep 17 00:00:00 2001 From: Lee Bousfield Date: Sat, 12 May 2018 16:57:52 -0600 Subject: i128: get rid of i128 Rust feature We no longer need to enable the i128 Rust feature, since it is stabilized. We leave byteorder's i128 feature in tact to preserve compilation on Rust 1.12. --- src/lib.rs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index eb20a81..a4a7add 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -63,8 +63,6 @@ This crate can also be used without the standard library. #![deny(missing_docs)] #![cfg_attr(not(feature = "std"), no_std)] -#![cfg_attr(feature = "i128", feature(i128_type))] -#![cfg_attr(all(feature = "i128", test), feature(i128))] #![doc(html_root_url = "https://docs.rs/byteorder/1.2.1")] #[cfg(feature = "std")] @@ -1495,8 +1493,6 @@ pub trait ByteOrder /// Convert the host platform's endianness to big-endian: /// /// ```rust - /// #![feature(i128_type)] - /// /// use byteorder::{ByteOrder, BigEndian}; /// /// let mut numbers = [5, 65000]; @@ -1592,8 +1588,6 @@ pub trait ByteOrder /// Convert the host platform's endianness to big-endian: /// /// ```rust - /// #![feature(i128_type)] - /// /// use byteorder::{ByteOrder, BigEndian}; /// /// let mut numbers = [5, 65000]; -- cgit v1.2.3