Update panics

This commit is contained in:
Michael Droogleever Fortuyn
2019-11-23 15:51:34 +01:00
parent ec972af59a
commit 707ad39a62
4 changed files with 4 additions and 4 deletions

View File

@@ -5,6 +5,6 @@ version = "0.1.0"
[dependencies]
cortex-m-rt="~0.6"
cortex-m-semihosting="~0.3"
panic-abort = "~0.3"
panic-halt = "~0.2"
panic-semihosting = "~0.5"
microbit="~0.7"

View File

@@ -1,7 +1,7 @@
#![no_std]
#![no_main]
extern crate panic_abort;
extern crate panic_halt;
extern crate cortex_m_rt as rt;
extern crate microbit;

View File

@@ -1,7 +1,7 @@
#![no_std]
#![no_main]
extern crate panic_abort;
extern crate panic_halt;
extern crate cortex_m_rt as rt;
extern crate microbit;

View File

@@ -5,7 +5,7 @@
extern crate microbit;
extern crate cortex_m_rt as rt;
extern crate cortex_m_semihosting as sh;
extern crate panic_abort;
extern crate panic_halt;
use core::fmt::Write;
use rt::entry;