mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-30 19:54:36 +01:00
11 lines
199 B
Rust
11 lines
199 B
Rust
//! 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;
|