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 9163639 commit 20fabe6Copy full SHA for 20fabe6
src/lib.rs
@@ -6,14 +6,14 @@
6
#![crate_name = "libc"]
7
#![crate_type = "rlib"]
8
#![allow(
9
+ renamed_and_removed_lints, // Keep this order.
10
+ unknown_lints, // Keep this order.
11
bad_style,
12
overflowing_literals,
13
improper_ctypes,
14
// This lint is renamed but we run CI for old stable rustc so should be here.
15
redundant_semicolon,
- redundant_semicolons,
- renamed_and_removed_lints,
16
- unknown_lints
+ redundant_semicolons
17
)]
18
#![cfg_attr(libc_deny_warnings, deny(warnings))]
19
// Attributes needed when building as part of the standard library
0 commit comments