1
2
3
4
5
6
7
8
9
10
//! Non-thread-safe channels.
//!
//! See docs for [`mpsc::channel()`].

#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible, missing_docs)]

extern crate alloc;

pub mod mpsc;