retty 0.14.2

Retty — an asynchronous Rust networking framework that makes it easy to build protocols, application clients/servers.
Documentation
//! The handler and pipeline APIs which are asynchronous and event-driven abstraction of various transports
#[cfg(test)]
pub(crate) mod channel_test;

mod handler;
mod handler_internal;
mod pipeline;

pub use handler::{
    Handler, InboundHandler, InboundHandlerContext, OutboundHandler, OutboundHandlerContext,
};
pub use handler_internal::{InboundHandlerInternal, OutboundHandlerInternal};
pub use pipeline::Pipeline;