myserver
myserver is a simple Rust networking library that provides:
- A Server and Client for TCP communication
- Generic
send<T>()andreceive<T>()methods for any serializable type - Custom
EncodeandDecodetraits for serialization, with#[derive(Encode, Decode)]macros - A single-crate feel with proc-macros automatically included
Installation
Add myserver to your Cargo.toml:
[]
= "0.1"