tcp-lib 0.1.0

I/O-free library to manage TCP streams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]

//! The [TCP flows] project is a set of libraries to manage TCP
//! streams in a I/O-agnostic way. It is highly recommended that you
//! read first about the project in order to understand `tcp-lib`.
//!
//! This library gathers all the I/O-free part of the project.
//!
//! [TCP flows]: https://github.com/pimalaya/tcp

pub mod read;
pub mod write;