mirror of
https://github.com/fafhrd91/actix-net
synced 2025-02-22 22:13:17 +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;
|