mirror of
https://github.com/fafhrd91/actix-net
synced 2025-01-31 15:00:07 +01:00
9 lines
157 B
Rust
9 lines
157 B
Rust
//! Non-thread-safe channels.
|
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
#![warn(future_incompatible, missing_docs)]
|
|
|
|
extern crate alloc;
|
|
|
|
pub mod mpsc;
|