4 releases

0.0.4 Feb 16, 2023
0.0.3 Nov 16, 2021
0.0.2 May 12, 2021
0.0.1 May 12, 2021

#293 in Compression

MIT license

25KB
420 lines

Crate License Crate Downloads Crate Size Build

huff-tree-tap

Huffman Encoder and Decoder Library

Example usage

Cargo.toml:

[dependencies]
huff_tree_tap = "*" # You can specify a version here if you want
extern crate huff_tree_tap;
use  huff_tree_tap::*;

let data: Vec<u8> = "this is a test string!".to_string().into_bytes();
let huffman_data: HuffmanData = huffman_encode(&data);
let encoded_data: Vec<u8> = huffman_data.encoded_data; // The given data encoded
let encoding_map: HashMap<u8,String> = huffman_data.encoding_map; // The encoding map required to decode the data

Dependencies

~0.7–1.5MB
~33K SLoC