Remove the deny(warnings) attributes

It was suggested on the Rust Embedded channel to not set this in
released code.  The warnings are currently because of the embedded-hal
crate deprecating digital::v1, but stm32f4xx-hal still using it.
This commit is contained in:
Paul van Tilburg 2019-06-29 12:05:09 +02:00
parent d8e135d245
commit 8b7d68e41c
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
3 changed files with 0 additions and 3 deletions

View File

@ -4,7 +4,6 @@
//! example with serial terminal emulator like `minicom`. //! example with serial terminal emulator like `minicom`.
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![deny(warnings)]
#![no_main] #![no_main]
#![no_std] #![no_std]

View File

@ -4,7 +4,6 @@
//! debug output. //! debug output.
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![deny(warnings)]
#![no_main] #![no_main]
#![no_std] #![no_std]

View File

@ -4,7 +4,6 @@
//! ring does: cycle clock-wise, counter clock-wise, or follow the accelerometer. //! ring does: cycle clock-wise, counter clock-wise, or follow the accelerometer.
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![deny(warnings)]
#![no_main] #![no_main]
#![no_std] #![no_std]