protwrap 0.4.3

Thin protocol wrapper for network applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Wrappers around common network primitives to  facilitate writing
//! client/server end-points.

#![cfg_attr(docsrs, feature(doc_cfg))]

mod err;
mod pspec;

#[cfg(feature = "tokio")]
#[cfg_attr(docsrs, doc(cfg(feature = "tokio")))]
pub mod tokio;

pub use err::Error;

// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :