summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cb0939e7..d8cd5252 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+### Fixed
+
+- `cargo test` can now run on non-`x86` hosts
+
### Added
- Added `OldestOrdered` iterator for `HistoryBuffer`
diff --git a/Cargo.toml b/Cargo.toml
index 626365ee..4c8e90ec 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,7 +27,7 @@ mpmc_large = []
# This flag has no version guarantee, the `defmt` dependency can be updated in a patch release
defmt-impl = ["defmt"]
-[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dev-dependencies]
+[target.'cfg(not(target_os = "none"))'.dev-dependencies]
scoped_threadpool = "0.1.8"
[target.thumbv6m-none-eabi.dependencies]