NPacked ======= NPacked is a simple library for fast unpacking of files. It is intended to be used in video games as a data file format. [![Build Status](https://travis-ci.org/nuew/npacked.svg)](https://travis-ci.org/nuew/npacked) [![Crates.io](https://img.shields.io/crates/v/npacked.svg)](https://crates.io/crates/npacked) Rustdoc: https://nuew.github.io/npacked/npacked ## Usage Put this in your `Cargo.toml`: ```toml [dependencies] npacked = "*" ``` And this in your crate root: ```rust extern crate npacked; ``` See the rustdoc for further documentation.