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:
parent
d8e135d245
commit
8b7d68e41c
3 changed files with 0 additions and 3 deletions
|
@ -4,7 +4,6 @@
|
|||
//! example with serial terminal emulator like `minicom`.
|
||||
|
||||
#![deny(unsafe_code)]
|
||||
#![deny(warnings)]
|
||||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
//! debug output.
|
||||
|
||||
#![deny(unsafe_code)]
|
||||
#![deny(warnings)]
|
||||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
//! ring does: cycle clock-wise, counter clock-wise, or follow the accelerometer.
|
||||
|
||||
#![deny(unsafe_code)]
|
||||
#![deny(warnings)]
|
||||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
|
|
Loading…
Reference in a new issue