Skip to content
This repository was archived by the owner on Nov 11, 2020. It is now read-only.

make compilable on stable #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]