Procházet zdrojové kódy

Merge #83

83: update bare-metal and remove Nr trait r=Disasm a=almindor



Co-authored-by: Ales Katona <ales@katona.me>
bors[bot] před 3 roky
rodič
revize
fc82cf7302
3 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. 2 0
      CHANGELOG.md
  2. 1 1
      Cargo.toml
  3. 1 1
      src/interrupt.rs

+ 2 - 0
CHANGELOG.md

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+- Update `bare-metal` to `v1.0.0` removing `Nr` trait
+
 ### Changed
 
 - Build targets on `docs.rs` are now RISC-V targets other than default ones

+ 1 - 1
Cargo.toml

@@ -16,7 +16,7 @@ targets = [
 ]
 
 [dependencies]
-bare-metal = "0.2.5"
+bare-metal = "1.0.0"
 bit_field = "0.10.0"
 
 [build-dependencies]

+ 1 - 1
src/interrupt.rs

@@ -1,7 +1,7 @@
 //! Interrupts
 
 // NOTE: Adapted from cortex-m/src/interrupt.rs
-pub use bare_metal::{CriticalSection, Mutex, Nr};
+pub use bare_metal::{CriticalSection, Mutex};
 use register::mstatus;
 
 /// Disables all interrupts