1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
// Copyright © 2015-2018, Peter Atashian
//! A high performance Rust library used to read [NX files](http://nxformat.github.io/) with
//! minimal memory usage.
#![warn(missing_docs)]

extern crate memmap;

pub use file::{Error, File};
pub use node::{GenericNode, Node, Type};

pub mod audio;
pub mod bitmap;
pub mod file;
pub mod node;
mod repr;
mod lz4;