Adding comment about deprecation allowance

This commit is contained in:
Ryan Summers 2020-11-10 15:14:49 +01:00
parent c804312e60
commit 7b86a2bc42
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,4 @@
#![deny(warnings)]
#![allow(deprecated)]
#![allow(clippy::missing_safety_doc)]
#![no_std]
#![no_main]
@ -19,6 +18,9 @@ fn panic(_info: &core::panic::PanicInfo) -> ! {
}
}
// Deprecation warnings are temporarily allowed as the HAL DMA goes through updates.
#![allow(deprecated)]
#[cfg(feature = "semihosting")]
extern crate panic_semihosting;