tokio_connectors/lib.rs
1//! A helper package for communicating (with|between) processes using tokio/async clients and servers.
2//!
3//!
4
5// TODO: the TCP and UNIX server/client implementations share a lot of code... should be refactored
6// to be generic over a transport somehow (but it all works fine for now)...
7
8pub mod tcp;
9
10#[cfg(target_family = "unix")]
11pub mod unix;
12
13pub mod codecs;
14
15pub mod error;
16
17#[cfg(test)]
18pub mod helpers;
19
20mod handle;