echosrv 0.3.0

A high-performance set of async echo server library built with Tokio for testing and development environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Stream-based echo server and client functionality
//!
//! This module provides generic stream-based echo servers and clients
//! that can work with any stream protocol (TCP, Unix streams, etc.).

pub mod client;
pub mod config;
pub mod protocol;
pub mod server;

pub use client::{Client, ClientConfig, ClientConfigBuilder};
pub use config::StreamConfig;
pub use protocol::StreamProtocol;
pub use server::StreamEchoServer;