huffman-rust 0.1.1-alpha

Encode and decode files using canonical huffman codes
Documentation
# Huffman Rust

[![Build Status](https://travis-ci.org/sagalasan/huffman-rust.svg?branch=master)](https://travis-ci.org/sagalasan/huffman-rust)

Encode and decode files using canonical huffman codes.

## Installation

Place the following in your `Cargo.toml` file.

```toml
huffman-rust = "0.1"
```

## Usage

Import the crate.
```rust
extern crate huffman_rust as huffman;
```