diff options
author | 2020-11-11 00:48:22 +0100 | |
---|---|---|
committer | 2020-11-11 00:48:22 +0100 | |
commit | ce707f6da434161f715250aeca539b8317338349 (patch) | |
tree | 09535be58a12b8f272ad56aa78aa77df02a056d1 | |
parent | 5b65e95f816dfc96a1921c8837127581215aafd6 (diff) | |
download | cortex-m-ce707f6da434161f715250aeca539b8317338349.tar.gz cortex-m-ce707f6da434161f715250aeca539b8317338349.tar.zst cortex-m-ce707f6da434161f715250aeca539b8317338349.zip |
Add "embedded" category to semihosting crates
-rw-r--r-- | cortex-m-semihosting/Cargo.toml | 1 | ||||
-rw-r--r-- | panic-semihosting/Cargo.toml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/cortex-m-semihosting/Cargo.toml b/cortex-m-semihosting/Cargo.toml index c6204eb..5894029 100644 --- a/cortex-m-semihosting/Cargo.toml +++ b/cortex-m-semihosting/Cargo.toml @@ -6,6 +6,7 @@ authors = [ description = "Semihosting for ARM Cortex-M processors" documentation = "https://docs.rs/cortex-m-semihosting" keywords = ["semihosting", "arm", "cortex-m"] +categories = ["no-std", "embedded"] license = "MIT OR Apache-2.0" name = "cortex-m-semihosting" readme = "README.md" diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml index cf0e978..d38b0cd 100644 --- a/panic-semihosting/Cargo.toml +++ b/panic-semihosting/Cargo.toml @@ -3,7 +3,7 @@ authors = [ "The Cortex-M Team <cortex-m@teams.rust-embedded.org>", "Jorge Aparicio <jorge@japaric.io>", ] -categories = ["no-std"] +categories = ["no-std", "embedded"] description = "Report panic messages to the host stderr using semihosting" documentation = "https://docs.rs/panic-semihosting" keywords = ["panic-handler", "panic-impl", "panic", "semihosting"] |