1//! Non-thread-safe channels. 2//! 3//! See docs for [`mpsc::channel()`]. 4 5#![deny(rust_2018_idioms, nonstandard_style)] 6#![warn(future_incompatible, missing_docs)] 7 8extern crate alloc; 9 10pub mod mpsc;