async-std 1.12.0

Async version of the Rust standard library
Documentation
//! Channels
//!
//! Multi-producer, multi-consumer queues, used for message-based
//! communication. Can provide a lightweight inter-task synchronisation
//! mechanism, at the cost of some extra memory.

#[doc(inline)]
pub use async_channel::*;