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

11 lines
199 B
Rust
Raw Normal View History

//! Non-thread-safe channels.
//!
//! See docs for [`mpsc::channel()`].
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;