tipsy
This is a fork of parity-tokio-ipc.
tipsy is a library for cross-platform async
IPC using Tokio. It utilizes unix sockets on UNIX (via
tokio::net::UnixStream
)
and named pipes on windows (via
tokio::net::windows::named_pipe
).
Server
use StreamExt;
use Error;
use ;
async
Client
use Error;
use ;
use AsyncWriteExt;
async
Examples
See examples.
Supported Rust Versions
The MSRV is currently 1.75.0
.