diff options
-rw-r--r-- | cortex-m-semihosting/src/hio.rs | 3 | ||||
-rw-r--r-- | cortex-m/Cargo.toml | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/cortex-m-semihosting/src/hio.rs b/cortex-m-semihosting/src/hio.rs index b6b6c7b..e0614ad 100644 --- a/cortex-m-semihosting/src/hio.rs +++ b/cortex-m-semihosting/src/hio.rs @@ -1,5 +1,8 @@ //! Host I/O +// Fixing this lint requires a breaking change that does not add much value +#![allow(clippy::result_unit_err)] + use crate::nr; use core::{fmt, slice}; diff --git a/cortex-m/Cargo.toml b/cortex-m/Cargo.toml index cdd63bd..03a1ca1 100644 --- a/cortex-m/Cargo.toml +++ b/cortex-m/Cargo.toml @@ -18,7 +18,7 @@ links = "cortex-m" # prevent multiple versions of this crate to be linked toget [dependencies] critical-section = "1.0.0" -volatile-register = "0.2.0" +volatile-register = "0.2.2" bitfield = "0.13.2" embedded-hal = "0.2.4" |