aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Greig <adam@adamgreig.com> 2022-02-25 01:56:50 +0000
committerGravatar Adam Greig <adam@adamgreig.com> 2022-02-25 01:56:50 +0000
commitb49bcbe9fd6bbc36874a6d763c07b97aca8df71f (patch)
tree5dd5e6e942e23aa6a2c4e812383dce33d762b453
parent3e8a5beec5f96a3c219b840dc26df34f76e4ab1e (diff)
downloadcortex-m-b49bcbe9fd6bbc36874a6d763c07b97aca8df71f.tar.gz
cortex-m-b49bcbe9fd6bbc36874a6d763c07b97aca8df71f.tar.zst
cortex-m-b49bcbe9fd6bbc36874a6d763c07b97aca8df71f.zip
Remove inline-asm features from cortex-m-semihosting and panic-semihosting entirely
-rw-r--r--cortex-m-semihosting/CHANGELOG.md1
-rw-r--r--cortex-m-semihosting/Cargo.toml1
-rw-r--r--panic-semihosting/CHANGELOG.md1
-rw-r--r--panic-semihosting/Cargo.toml1
4 files changed, 2 insertions, 2 deletions
diff --git a/cortex-m-semihosting/CHANGELOG.md b/cortex-m-semihosting/CHANGELOG.md
index 38ee835..2b9c780 100644
--- a/cortex-m-semihosting/CHANGELOG.md
+++ b/cortex-m-semihosting/CHANGELOG.md
@@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
- Always use inline-asm, requiring Rust 1.59.
+- Removed inline-asm feature.
## [v0.4.1] - 2020-10-20
diff --git a/cortex-m-semihosting/Cargo.toml b/cortex-m-semihosting/Cargo.toml
index b539e13..32e980e 100644
--- a/cortex-m-semihosting/Cargo.toml
+++ b/cortex-m-semihosting/Cargo.toml
@@ -16,7 +16,6 @@ edition = "2021"
rust-version = "1.59"
[features]
-inline-asm = []
jlink-quirks = []
no-semihosting = []
diff --git a/panic-semihosting/CHANGELOG.md b/panic-semihosting/CHANGELOG.md
index c7a2e78..5f7bf7b 100644
--- a/panic-semihosting/CHANGELOG.md
+++ b/panic-semihosting/CHANGELOG.md
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
- Always use inline-asm, requiring Rust 1.59.
+- Remove inline-asm feature.
## [v0.5.6] - 2020-11-14
diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml
index 0e9749a..4aaadb4 100644
--- a/panic-semihosting/Cargo.toml
+++ b/panic-semihosting/Cargo.toml
@@ -20,7 +20,6 @@ cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.3, <
[features]
exit = []
-inline-asm = []
jlink-quirks = ["cortex-m-semihosting/jlink-quirks"]
[package.metadata.docs.rs]