We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 22a08ab + 034faa0 commit 9e2d3e6Copy full SHA for 9e2d3e6
src/lib.rs
@@ -178,7 +178,8 @@
178
179
#![cfg_attr(not(feature="std"), no_std)]
180
#![cfg_attr(all(feature="alloc", not(feature="std")), feature(alloc))]
181
-#![cfg_attr(feature = "i128_support", feature(i128_type, i128))]
+#![cfg_attr(all(feature="i128_support", feature="nightly"), allow(stable_features))] // stable since 2018-03-27
182
+#![cfg_attr(all(feature="i128_support", feature="nightly"), feature(i128_type, i128))]
183
#![cfg_attr(feature = "stdweb", recursion_limit="128")]
184
185
#[cfg(feature="std")] extern crate std as core;
0 commit comments