Update for stabilized features

This commit is contained in:
Tangent Wantwight 2022-10-05 19:57:08 -04:00
parent c578960321
commit 175a629b6e
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
#![no_std]
#![no_main]
#![feature(destructuring_assignment)]
use lights_hal::{boot, entry};

View File

@ -1,5 +1,4 @@
#![no_std]
#![feature(asm)]
extern crate cortex_m;
extern crate embedded_hal;
@ -9,6 +8,7 @@ extern crate panic_halt;
pub use cortex_m::asm::delay;
pub use hal::entry;
use core::arch::asm;
use core::fmt::Debug;
use core::sync::atomic::{compiler_fence, Ordering};
use core::u8;