blob: fd8b6c3ad059d3973586666c4d2d5f3dcc08502b (
plain) (
blame)
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;
|