Skip to content

Commit 5229dea

Browse files
bors[bot]Robert Forsmanjaparic
authored
Merge #320
320: switch to a more recent atomic-polyfill that compiles for AVR r=japaric a=japaric cleaned up version of PR #313 closes #313 Co-authored-by: Robert Forsman <[email protected]> Co-authored-by: Jorge Aparicio <[email protected]>
2 parents 4ac0962 + c408a19 commit 5229dea

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1616
- [breaking-change] `IndexMap` and `IndexSet` now require that keys implement the `core::hash::Hash`
1717
trait instead of the `hash32::Hash` (v0.2.0) trait
1818

19+
- [breaking-change] this crate now depends on `atomic-polyfill` v1.0.1, meaning that targets that
20+
require a polyfill need a `critical-section` **v1.x.x** implementation.
21+
1922
### Fixed
2023

2124
### Removed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ mpmc_large = []
2828
defmt-impl = ["defmt"]
2929

3030
[target.thumbv6m-none-eabi.dependencies]
31-
atomic-polyfill = { version = "0.1.2", optional = true }
31+
atomic-polyfill = { version = "1.0.1", optional = true }
3232

3333
[target.riscv32i-unknown-none-elf.dependencies]
34-
atomic-polyfill = { version = "0.1.4" }
34+
atomic-polyfill = { version = "1.0.1" }
3535

3636
[target.riscv32imc-unknown-none-elf.dependencies]
37-
atomic-polyfill = { version = "0.1.4" }
37+
atomic-polyfill = { version = "1.0.1" }
3838

3939
[target.'cfg(target_arch = "avr")'.dependencies]
40-
atomic-polyfill = { version = "0.1.8", optional = true }
40+
atomic-polyfill = { version = "1.0.1", optional = true }
4141

4242
[dependencies]
4343
hash32 = "0.3.0"

0 commit comments

Comments
 (0)