middleman 0.3.1

A wrapper for a mio::TcpStream to send and receive serializable Structs (blocking or non blocking) of arbitrary size
Documentation
////////////////////// IMPORTS ////////////////////

extern crate serde;
extern crate byteorder;
extern crate bincode;
extern crate mio;
// extern crate ringtail;

#[cfg(test)]
#[macro_use] extern crate serde_derive;

////////////////////// API ////////////////////

mod errors;
pub use errors::{
    SendError,
    RecvError,
    PackingError,
};

mod traits;
pub use traits::{
    Message,
};

mod structs;
pub use structs::{
	Middleman,
	PackedMessage,
};

////////////////////// TESTS ////////////////////

#[cfg(test)]
mod tests;