1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(not(test), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

/// Useful synchronization primitives.
pub mod sync;

/// Thread utilities, including cooperative green threads.
pub mod thread;

/// Temporal quantification.
pub mod time;