[package]
edition = "2021"
name = "hfmn"
version = "0.1.1"
authors = ["PirateSands2 <piratesands2@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible Huffman coding implementation"
readme = "readme.md"
keywords = [
"compression",
"huffman",
"coding",
]
categories = ["compression"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/PirateSands2/hfmn"
[profile.release]
lto = true
debug = 0
[lib]
name = "hfmn"
path = "src/lib.rs"
[[example]]
name = "dynamic_coding"
path = "examples/dynamic_coding.rs"
[[example]]
name = "static_coding"
path = "examples/static_coding.rs"
[[test]]
name = "through"
path = "tests/through.rs"
[[test]]
name = "tree_codings"
path = "tests/tree_codings.rs"
[[bench]]
name = "basic_codings"
path = "benches/basic_codings.rs"
harness = false
[dependencies.bincode]
version = "1.3.3"
[dependencies.itertools]
version = "0.13.0"
[dependencies.num-derive]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.rustc-hash]
version = "2.0"
[dependencies.serde]
version = "1.0.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0.64"
[dev-dependencies.criterion]
version = "0.5.1"