diff options
Diffstat (limited to '')
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
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` @@ -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] |