Skip to content

Commit

Permalink
Switch to portable-atomic
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Nov 2, 2023
1 parent dec7b46 commit ac56690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/static-cell"

[dependencies]
atomic-polyfill = "1.0.1"
portable-atomic = "1.5.1"

[features]
nightly = []
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use core::cell::UnsafeCell;
use core::mem::MaybeUninit;

use atomic_polyfill::{AtomicBool, Ordering};
use portable_atomic::{AtomicBool, Ordering};

/// Statically allocated, initialized at runtime cell.
///
Expand Down

0 comments on commit ac56690

Please sign in to comment.