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
136 B
Rust
Raw Normal View History

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