water 0.3.9-alpha

A Rust library that provides a thread-safe distributed message sending facility supporting synchronous and asynchronous I/O.
#![allow(unused_imports)]
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(unused_must_use)]
#![allow(deprecated)]

extern crate time;

pub use net::Net;
pub use endpoint::Endpoint;
pub use rawmessage::RawMessage;
pub use net::NetProtocolAddress;
pub use rawmessage::NoPointers;

mod endpoint;
mod net;
mod rawmessage;
mod timespec;
mod tcp;