We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 424e37b + c00f3cd commit 718435bCopy full SHA for 718435b
src/lib.rs
@@ -14,6 +14,7 @@
14
#![feature(strict_provenance)]
15
#![feature(exposed_provenance)]
16
#![feature(pointer_is_aligned_to)]
17
+#![feature(unqualified_local_imports)]
18
// Configure clippy and other lints
19
#![allow(
20
clippy::collapsible_else_if,
@@ -42,13 +43,12 @@
42
43
)]
44
#![warn(
45
rust_2018_idioms,
46
+ unqualified_local_imports,
47
clippy::cast_possible_wrap, // unsigned -> signed
48
clippy::cast_sign_loss, // signed -> unsigned
49
clippy::cast_lossless,
50
clippy::cast_possible_truncation,
51
-#![cfg_attr(not(bootstrap), feature(unqualified_local_imports))]
-#![cfg_attr(not(bootstrap), warn(unqualified_local_imports))]
52
// Needed for rustdoc from bootstrap (with `-Znormalize-docs`).
53
#![recursion_limit = "256"]
54
0 commit comments