asyncsync 0.2.0

Runtime-agnostic synchronization primitives for asynchronous Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Runtime-independent synchronization primitives for asynchronous Rust.
#![no_std]

#[cfg(any(feature = "std", test))]
extern crate std;

mod linked_list;
pub(crate) mod utils;

#[cfg(feature = "std")]
mod notify;

#[cfg(feature = "local")]
pub mod local;

#[cfg(feature = "std")]
pub use notify::{Notified, Notify};