diff options
Diffstat (limited to 'panic-itm/Cargo.toml')
-rw-r--r-- | panic-itm/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/panic-itm/Cargo.toml b/panic-itm/Cargo.toml new file mode 100644 index 0000000..23cf1f3 --- /dev/null +++ b/panic-itm/Cargo.toml @@ -0,0 +1,16 @@ +[package] +authors = [ + "The Cortex-M Team <cortex-m@teams.rust-embedded.org>", + "Jorge Aparicio <jorge@japaric.io>", +] +categories = ["no-std", "embedded"] +description = "Log panic messages using the ITM (Instrumentation Trace Macrocell)" +documentation = "https://docs.rs/panic-itm" +keywords = ["panic-impl", "panic-handler", "ITM", "ARM", "Cortex-M"] +license = "MIT OR Apache-2.0" +name = "panic-itm" +repository = "https://github.com/rust-embedded/cortex-m" +version = "0.4.1" + +[dependencies] +cortex-m = { path = "..", version = ">= 0.5.8, < 0.8" } |