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.
1 parent 50b4865 commit 3a95261Copy full SHA for 3a95261
src/lib.rs
@@ -12,6 +12,9 @@
12
#![deny(missing_copy_implementations)]
13
#![deny(missing_debug_implementations)]
14
#![warn(missing_docs)]
15
+// Because we run clippy on both nightly and 1.4.60
16
+#![allow(clippy::unknown_clippy_lints)]
17
+#![allow(clippy::if_then_panic)] // Too pedantic
18
19
// Re-exported external crates
20
pub use libc;
test/test.rs
@@ -1,3 +1,7 @@
1
2
3
4
+
5
#[macro_use]
6
extern crate cfg_if;
7
#[cfg_attr(not(target_os = "redox"), macro_use)]
0 commit comments