atomic_core/
lib.rs

1#![no_std]
2pub use core::*;
3
4#[cfg(not(target_has_atomic))]
5pub mod sync {
6    pub mod atomic {
7        pub use portable_atomic::*;
8    }
9}