From 9bf5caafc2bd357614a78d3db77c225a323f209f Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Sun, 14 Jun 2020 14:16:26 +0300 Subject: [PATCH] Remove #![deny(warnings)] (anti-pattern) --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4c3d76d..af24199 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,6 @@ //! - Wrappers around assembly instructions like `WFI`. #![no_std] -#![deny(warnings)] #![cfg_attr(feature = "inline-asm", feature(asm))] extern crate bare_metal;