diff --git a/uefi/src/lib.rs b/uefi/src/lib.rs index 679990d5a..4d2825b8b 100644 --- a/uefi/src/lib.rs +++ b/uefi/src/lib.rs @@ -87,15 +87,16 @@ #![cfg_attr(all(feature = "unstable", feature = "alloc"), feature(allocator_api))] #![cfg_attr(docsrs, feature(doc_auto_cfg))] #![no_std] -// Enable some additional warnings and lints. -#![warn(clippy::ptr_as_ptr, missing_docs, unused)] #![deny( clippy::all, + clippy::missing_const_for_fn, clippy::must_use_candidate, + clippy::ptr_as_ptr, clippy::use_self, - clippy::missing_const_for_fn + missing_debug_implementations, + missing_docs, + unused )] -#![deny(missing_debug_implementations)] #[cfg(feature = "alloc")] extern crate alloc; diff --git a/uefi/src/proto/mod.rs b/uefi/src/proto/mod.rs index 5919b7afc..1650fb983 100644 --- a/uefi/src/proto/mod.rs +++ b/uefi/src/proto/mod.rs @@ -9,6 +9,8 @@ //! //! [`BootServices`]: crate::table::boot::BootServices#accessing-protocols +#![warn(dead_code)] // https://github.com/rust-osdev/uefi-rs/issues/1205 + use crate::Identify; use core::ffi::c_void; diff --git a/uefi/src/proto/tcg/v1.rs b/uefi/src/proto/tcg/v1.rs index 30173b7a3..40ddf6731 100644 --- a/uefi/src/proto/tcg/v1.rs +++ b/uefi/src/proto/tcg/v1.rs @@ -22,7 +22,7 @@ use ptr_meta::Pointee; use {crate::mem::make_boxed, alloc::boxed::Box}; #[cfg(all(feature = "unstable", feature = "alloc"))] -use {alloc::alloc::Global, core::alloc::Allocator}; +use alloc::alloc::Global; /// 20-byte SHA-1 digest. pub type Sha1Digest = [u8; 20]; diff --git a/uefi/src/proto/tcg/v2.rs b/uefi/src/proto/tcg/v2.rs index 987a6cd49..ba9b98fdd 100644 --- a/uefi/src/proto/tcg/v2.rs +++ b/uefi/src/proto/tcg/v2.rs @@ -25,7 +25,7 @@ use ptr_meta::{Pointee, PtrExt}; use {crate::mem::make_boxed, alloc::boxed::Box}; #[cfg(all(feature = "unstable", feature = "alloc"))] -use {alloc::alloc::Global, core::alloc::Allocator}; +use alloc::alloc::Global; /// Version information. ///