//! 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 Parcel;
pub use ;
// Must go first because it defines common macros.
extern crate byteorder;
extern crate flate2;
extern crate error_chain;
extern crate uuid;
extern crate num_traits;
/// The default byte ordering.
pub type ByteOrder = BigEndian;