From 4cf5a534ec1feb9f731da115c9fa57923ab741f9 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Thu, 29 Mar 2018 09:18:26 -0600 Subject: [PATCH] i128_type feature has been stabilized in Rust. --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index bb2f770..e16c8c0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,3 @@ -// If the "u128-support" feature is enabled, this library can use -// more efficient arithmetic. Only available in the nightly compiler. -#![cfg_attr(feature = "u128-support", feature(i128_type))] // `clippy` is a code linting tool for improving code quality by catching // common mistakes or strange code patterns. If the `clippy` feature is // provided, it is enabled and all compiler warnings are prohibited.