tcp_lib/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
2
3//! The [TCP flows] project is a set of libraries to manage TCP
4//! streams in a I/O-agnostic way. It is highly recommended that you
5//! read first about the project in order to understand `tcp-lib`.
6//!
7//! This library gathers all the I/O-free part of the project.
8//!
9//! [TCP flows]: https://github.com/pimalaya/tcp
10
11pub mod read;
12pub mod write;