From 752caa41020edd279e846979e8aca16726efc8b5 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 26 Apr 2018 04:49:53 +0200 Subject: [PATCH] make compilable on stable --- Cargo.toml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ea088de1a..daa23ca91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,8 +6,17 @@ keywords = ["panic-impl", "panic", "semihosting"] license = "MIT OR Apache-2.0" name = "panic-semihosting" repository = "https://github.com/japaric/panic-semihosting" -version = "0.1.0" +version = "0.1.1" -[dependencies] -cortex-m-semihosting = "0.2.0" -cortex-m = "0.4.3" +[dependencies.cortex-m] +default-features = false +# version = "0.4.4" +git = "https://github.com/japaric/cortex-m" +branch = "stable" + +[dependencies.cortex-m-semihosting] +version = "0.2.1" +default-features = false + +[features] +inline-asm = ["cortex-m-semihosting/inline-asm", "cortex-m/inline-asm"] \ No newline at end of file