We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
math
1 parent a3582a8 commit 75eb6ecCopy full SHA for 75eb6ec
src/lib.rs
@@ -45,6 +45,9 @@ mod macros;
45
pub mod float;
46
pub mod int;
47
48
+// For some reason, we still get clippy error `clippy::deprecated_cfg_attr` even though, we have
49
+// used `allow(clippy::all)` in the file. So, we are disabling the clippy check for this file.
50
+#[cfg(not(feature = "cargo-clippy"))]
51
pub mod math;
52
pub mod mem;
53
src/math.rs
@@ -1,4 +1,5 @@
1
#[allow(dead_code)]
2
+#[allow(unused_imports)]
3
#[path = "../libm/src/math/mod.rs"]
4
mod libm;
5
0 commit comments