109: Update to edition 2021. r=Disasm a=Dirbaio This shouldn't be a breaking change since Edition 2021 came out in Rust 1.56, and MSRV is already higher than that (Rust 1.59) Co-authored-by: Dario Nieuwenhuis <dirbaio@dirbaio.net>
@@ -1,6 +1,7 @@
[package]
name = "riscv"
version = "0.8.0"
+edition = "2021"
rust-version = "1.59"
repository = "https://github.com/rust-embedded/riscv"
authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
@@ -1,8 +1,8 @@
//! Interrupts
// NOTE: Adapted from cortex-m/src/interrupt.rs
+use crate::register::mstatus;
pub use bare_metal::{CriticalSection, Mutex};
-use register::mstatus;
/// Disables all interrupts
#[inline]
@@ -15,10 +15,6 @@
#![no_std]
-extern crate bare_metal;
-extern crate bit_field;
-extern crate embedded_hal;
-
pub mod asm;
pub mod delay;
pub mod interrupt;