diff options
Diffstat (limited to 'cortex-m-rt/Cargo.toml')
-rw-r--r-- | cortex-m-rt/Cargo.toml | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 0b24d79..fc1c181 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.2.4" +version = "0.3.0" [dependencies] r0 = "0.2.1" @@ -16,17 +16,11 @@ r0 = "0.2.1" optional = true version = "0.2.7" -[dependencies.cortex-m-semihosting] -optional = true -version = "0.1.3" - [features] default = ["exceptions", "linker-script"] # service all exceptions using the default handler exceptions = ["cortex-m"] # generic linker script linker-script = [] -# prints panic messages to the ITM -panic-over-itm = ["cortex-m"] -# prints panic messages to the host stdout -panic-over-semihosting = ["cortex-m-semihosting"] +# provides a panic_fmt implementation that calls the abort instruction (`udf 0xfe`) +abort-on-panic = []
\ No newline at end of file |