We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4a7f22 commit 99bc62aCopy full SHA for 99bc62a
2 files changed
src/binary16/arch/x86.rs
@@ -1,7 +1,7 @@
1
#![cfg(has_x86_intrinsics)]
2
#![allow(unused_imports)]
3
// NOTE: We feature gate this so it will never happen.
4
-#![allow(clippy::incompatible_msrv)]
+#![allow(unknown_lints, clippy::incompatible_msrv)]
5
6
#[cfg(target_arch = "x86")]
7
use core::arch::x86::_mm_cvtps_ph;
src/lib.rs
@@ -60,7 +60,6 @@
60
//! [`std`]: https://doc.rust-lang.org/std/
61
//! [`binary16`]: https://en.wikipedia.org/wiki/Half-precision_floating-point_format
62
//! [`bfloat16`]: https://en.wikipedia.org/wiki/Bfloat16_floating-point_format
63
-#![allow(unknown_lints)]
64
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless, unexpected_cfgs)]
65
#![cfg_attr(not(feature = "std"), no_std)]
66
#![doc(html_root_url = "https://docs.rs/float16/0.1.3")]
0 commit comments