1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![feature(question_mark)]
#![feature(try_from)]
#![feature(plugin)]

#![cfg_attr(test, plugin(stainless))]

//! Simple packet-based protocol definitions in Rust.
//!
//! * The `packet` module deals with defining packets.
//! * The `wire` module deals with transmission of packets.

pub use self::types::{Type, Integer, Array, String, ByteOrder};
pub use self::error::Error;
pub use self::packet::Packet;

#[macro_use]
pub mod types;
#[macro_use]
pub mod packet;
pub mod error;
#[macro_use]
pub mod wire;

extern crate byteorder;
extern crate flate2;

#[cfg(feature = "uuid")]
extern crate uuid;