We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e46f61 + e47a9e2 commit 46443a6Copy full SHA for 46443a6
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