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 7d61816 commit afc2af8Copy full SHA for afc2af8
uefi/src/lib.rs
@@ -87,15 +87,16 @@
87
#![cfg_attr(all(feature = "unstable", feature = "alloc"), feature(allocator_api))]
88
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
89
#![no_std]
90
-// Enable some additional warnings and lints.
91
-#![warn(clippy::ptr_as_ptr, missing_docs, unused)]
92
#![deny(
93
clippy::all,
+ clippy::missing_const_for_fn,
94
clippy::must_use_candidate,
+ clippy::ptr_as_ptr,
95
clippy::use_self,
96
- clippy::missing_const_for_fn
+ missing_debug_implementations,
97
+ missing_docs,
98
+ unused
99
)]
-#![deny(missing_debug_implementations)]
100
101
#[cfg(feature = "alloc")]
102
extern crate alloc;
0 commit comments