binary-io 0.1.0

A crate for reading and writing binary data files, according to LCS4. Also supports an extend version of the NBT format, as well as the ShadeNBT format.
Documentation
#![deny(warnings, missing_docs)]

//!
//! Package for performing IO in the format specified by LCS 4,
//! as well as serialization according to the ShadeNBT specification
//!

#[macro_use]
extern crate fake_enum;

pub mod data;

pub mod uuid;

pub mod version;

#[cfg(feature = "nbt")]
pub mod nbt;

#[cfg(feature = "shade")]
pub mod shade;