1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-31 17:20:07 +01:00

9 lines
157 B
Rust
Raw Normal View History

//! Non-thread-safe channels.
2021-11-28 00:46:29 +00:00
#![deny(rust_2018_idioms, nonstandard_style)]
2021-12-08 06:09:46 +00:00
#![warn(future_incompatible, missing_docs)]
2021-11-28 00:46:29 +00:00
extern crate alloc;
pub mod mpsc;