1
2
3
4
5
6
7
8
9
10
11
//! Synchronization primitives for asynchronous contexts.

#![no_std]
#![deny(missing_docs)]

pub mod arbiter;
pub mod channel;

#[cfg(test)]
#[macro_use]
extern crate std;