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