We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37967b3 commit f83c97eCopy full SHA for f83c97e
src/lib.rs
@@ -14,14 +14,17 @@
14
//! [pd]: https://rust-lang.github.io/libc/#platform-specific-documentation
15
#![crate_name = "libc"]
16
#![crate_type = "rlib"]
17
-#![cfg_attr(libc_deny_warnings, deny(warnings))]
+// FIXME: Remove this and redundant_semicolon once renamed lint reaches stable.
18
+#![allow(renamed_and_removed_lints)]
19
#![allow(
20
bad_style,
21
overflowing_literals,
22
improper_ctypes,
23
unknown_lints,
- redundant_semicolon
24
+ redundant_semicolon,
25
+ redundant_semicolons
26
)]
27
+#![cfg_attr(libc_deny_warnings, deny(warnings))]
28
// Attributes needed when building as part of the standard library
29
#![cfg_attr(
30
feature = "rustc-dep-of-std",
0 commit comments