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 dcde5cd commit 833eb19Copy full SHA for 833eb19
src/lib.rs
@@ -9,6 +9,11 @@
9
unused_macros,
10
unused_macro_rules,
11
)]
12
+#![warn(
13
+ missing_copy_implementations,
14
+ missing_debug_implementations,
15
+ safe_packed_borrows
16
+)]
17
// Prepare for a future upgrade
18
#![warn(rust_2024_compatibility)]
19
// Things missing for 2024 that are blocked on MSRV or breakage
@@ -22,7 +27,6 @@
22
27
// Attributes needed when building as part of the standard library
23
28
#![cfg_attr(feature = "rustc-dep-of-std", feature(link_cfg, no_core))]
24
29
#![cfg_attr(feature = "rustc-dep-of-std", allow(internal_features))]
25
-#![warn(missing_copy_implementations, safe_packed_borrows)]
26
30
#![cfg_attr(not(feature = "rustc-dep-of-std"), no_std)]
31
#![cfg_attr(feature = "rustc-dep-of-std", no_core)]
32
0 commit comments