embassy-sync 0.8.0

no-std, no-alloc synchronization primitives with async support
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Async low-level wait queues

#[cfg_attr(feature = "turbowakers", path = "atomic_waker_turbo.rs")]
mod atomic_waker;
pub use atomic_waker::*;

mod waker_registration;
pub use waker_registration::*;

mod multi_waker;
pub use multi_waker::*;