aboutsummaryrefslogtreecommitdiff
path: root/panic-semihosting/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'panic-semihosting/Cargo.toml')
-rw-r--r--panic-semihosting/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml
new file mode 100644
index 0000000..708c029
--- /dev/null
+++ b/panic-semihosting/Cargo.toml
@@ -0,0 +1,22 @@
+[package]
+authors = [
+ "The Cortex-M Team <cortex-m@teams.rust-embedded.org>",
+ "Jorge Aparicio <jorge@japaric.io>",
+]
+categories = ["no-std"]
+description = "Report panic messages to the host stderr using semihosting"
+documentation = "https://docs.rs/panic-semihosting"
+keywords = ["panic-handler", "panic-impl", "panic", "semihosting"]
+license = "MIT OR Apache-2.0"
+name = "panic-semihosting"
+repository = "https://github.com/rust-embedded/panic-semihosting"
+version = "0.5.3"
+
+[dependencies]
+cortex-m = ">= 0.5.6, < 0.7"
+cortex-m-semihosting = "0.3"
+
+[features]
+exit = []
+inline-asm = ["cortex-m-semihosting/inline-asm", "cortex-m/inline-asm"]
+jlink-quirks = ["cortex-m-semihosting/jlink-quirks"]