zlink-smol 0.3.0

zlink library for the smol runtime
Documentation
1
2
3
4
5
6
7
8
//! Provides transport over Unix Domain Sockets.

mod stream;
pub use stream::{connect, Connection, Stream};
#[cfg(feature = "server")]
mod listener;
#[cfg(feature = "server")]
pub use listener::{bind, Listener};