mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-01 00:00:10 +02:00
The `tokio-async-await` crate is no longer a facade. Instead, the `tokio` crate provides a feature flag to enable async/await support.
15 lines
322 B
Rust
15 lines
322 B
Rust
#![doc(html_root_url = "https://docs.rs/tokio-channel/0.1.0")]
|
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
|
|
|
//! Asynchronous channels.
|
|
//!
|
|
//! This crate provides channels that can be used to communicate between
|
|
//! asynchronous tasks.
|
|
|
|
extern crate futures;
|
|
|
|
pub mod mpsc;
|
|
pub mod oneshot;
|
|
|
|
mod lock;
|