#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, allow(unused_attributes))]
#![deny(missing_docs)]
#[cfg(not(feature = "std"))]
extern crate alloc as std;
#[cfg(all(feature = "std", not(feature = "alloc")))]
extern crate std;
mod cell;
mod queue;
pub mod mpmc;
pub mod mpsc;
pub mod oneshot;