aboutsummaryrefslogtreecommitdiff
path: root/panic-semihosting/Cargo.toml
blob: 2e6c3bef8c9d7125f651d533cf84c8afbe99465e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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/cortex-m"
version = "0.5.3"

[dependencies]
cortex-m = { path = "..", version = ">= 0.5.6, < 0.7" }
cortex-m-semihosting = { path = "../cortex-m-semihosting", version = "0.3" }

[features]
exit = []
inline-asm = ["cortex-m-semihosting/inline-asm", "cortex-m/inline-asm"]
jlink-quirks = ["cortex-m-semihosting/jlink-quirks"]