1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-03 00:22:23 +01:00
actix-net/local-channel/src/lib.rs

9 lines
157 B
Rust
Raw Normal View History

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