oxidendron 1.1.0

A Huffman encoding and decoding cli tool
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 36.26 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.76 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • LukasHuth/Oxidendron
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • LukasHuth

Oxidendron

This is just a simple CLI tool for huffman encoding/decoding

Usage

Encoding

oxidendron encode file_to_encode.txt > output.txt

or

oxidendron encode file_to_encode.txt -o output.txt

or

oxidendron encode file_to_encode.txt --output output.txt

Decoding

oxidendron decode file_to_decode.txt > output.txt

or

oxidendron decode file_to_decode.txt -o output.txt

or

oxidendron decode file_to_decode.txt --output output.txt

Version

oxidendron version

Help page

oxidendron help

Installation

With Repository

git clone git@github.com:LukasHuth/Oxidendron.git
pushd Oxidendron
cargo install --path .
popd