Remove #[deny(warnings)], but deny warnings for CI

This commit is contained in:
Henrik Tjäder 2021-11-25 10:46:29 +01:00
parent 4de9eb673a
commit 3741d431be
3 changed files with 19 additions and 3 deletions

View file

@ -32,12 +32,12 @@
#![deny(missing_docs)]
#![deny(rust_2018_compatibility)]
#![deny(rust_2018_idioms)]
#![deny(warnings)]
#![no_std]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/rtic-rs/cortex-m-rtic/master/book/en/src/RTIC.svg",
html_favicon_url = "https://raw.githubusercontent.com/rtic-rs/cortex-m-rtic/master/book/en/src/RTIC.svg"
)]
//deny_warnings_placeholder_for_ci
use cortex_m::{interrupt::InterruptNumber, peripheral::NVIC};
pub use cortex_m_rtic_macros::app;