//! Simple packet-based protocol definitions in Rust.
//!
//! * The `packet` module deals with defining packets.
//! * The `wire` module deals with transmission of packets.
pub use ;
pub use Error;
pub use Packet;
extern crate byteorder;
extern crate flate2;
extern crate uuid;