From afbc3b711e9caf1d548ffe0bef37f95cec4c770a Mon Sep 17 00:00:00 2001 From: Melvin Wang Date: Thu, 9 May 2024 13:35:09 -0700 Subject: [PATCH] refactor: remove unused cfg_attr statement (#15) --- general/echo/kmdf/exe/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/general/echo/kmdf/exe/src/main.rs b/general/echo/kmdf/exe/src/main.rs index 01d6a20..72ff860 100644 --- a/general/echo/kmdf/exe/src/main.rs +++ b/general/echo/kmdf/exe/src/main.rs @@ -8,7 +8,6 @@ //! Idiomatic Rust wrappers for the Windows Driver Kit (WDK) APIs. This crate is //! built on top of the raw FFI bindings provided by [`wdk-sys`], and provides a //! safe, idiomatic rust interface to the WDK. -#![cfg_attr(feature = "nightly", feature(hint_must_use))] #![deny(missing_docs)] #![deny(unsafe_op_in_unsafe_fn)] #![deny(clippy::all)]