nue 0.3.0

I/O, POD, and misc. binary data encoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_docs)]

//! A collection of tools for working with binary data, I/O, and POD structs.
//!
//! Re-exports items from the `pod` and `nue_io` crates. See `nue_macros`
//! for more examples and usage.

extern crate nue_io;
extern crate packed as nue_packed;
extern crate pod;

pub use pod::*;
pub use nue_io::*;
pub use nue_packed::*;