Allow internal_features lint when building with "unstable"
This commit is contained in:
+2
-1
@@ -1,7 +1,8 @@
|
|||||||
//! libm in pure Rust
|
//! libm in pure Rust
|
||||||
#![deny(warnings)]
|
#![deny(warnings)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![cfg_attr(all(feature = "unstable"), feature(core_intrinsics))]
|
#![cfg_attr(feature = "unstable", allow(internal_features))]
|
||||||
|
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
|
||||||
#![allow(clippy::unreadable_literal)]
|
#![allow(clippy::unreadable_literal)]
|
||||||
#![allow(clippy::many_single_char_names)]
|
#![allow(clippy::many_single_char_names)]
|
||||||
#![allow(clippy::needless_return)]
|
#![allow(clippy::needless_return)]
|
||||||
|
|||||||
Reference in New Issue
Block a user