Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 373 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (21 loc) · 373 Bytes

Publishing

$ cd <project>
# Regenerate readme
$ cargo readme > README.md
# Run tests
$ cargo test
# Try to publich
$ cargo publish --dry-run
# Publish
$ cargo publish

Notes

# Build ENCODE_TABLE
$ cargo run --example parse
# Build DECODE_TABLE
$ cargo run --example flatten
# Generate documentation (./target/doc/httlib_huffman)
$ cargo doc