aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-11-25 09:48:39 +0000
committerGitHub <noreply@github.com>2021-11-25 09:48:39 +0000
commit235484565d706d362f37c8bd388dbfff78401e8a (patch)
tree1bed403d835baf4d9483944204577064ef3df58a /src
parent4de9eb673ae2f3d4ece52ff2047ed1f6792c0aff (diff)
parent3741d431bed5a4799c7fdb20de5950a0964569e5 (diff)
Merge #558
558: Remove #[deny(warnings)], but deny warnings for CI r=korken89 a=AfoHT Co-authored-by: Henrik Tjäder <henrik@grepit.se>
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 71cc86b..5fe35a9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;