Important
WIP
This is a work in progress and is not yet ready for use (and may never be).
(Educational and recreational) Implementation of a simple Huffman coding compression tool in Rust.
Only supports text files.
cargo run -- [OPTION] [FILE]or compile with
cargo buildand then
./target/debug/comp_tool [OPTION] [FILE]The compression command creates a compressed file named output.bin in the same directory as the input file.
The decompression command creates a decompressed file named output.txt in the same directory as the input file.
-ccompress the file-ddecompress the file
Any remarks or suggestions are very welcome, feel free to open an issue or a pull request.