[package]
name = "arithmetic-coding"
description = "fast and flexible arithmetic coding library"
version = "0.1.1"
edition = "2021"
license = "MIT"
keywords = ["compression", "encoding", "arithmetic-coding", "lossless"]
categories = ["compression", "encoding", "parsing"]
repository = "https://github.com/danieleades/arithmetic-coding"
[workspace]
members = [
".",
"arithmetic-coding-core",
"fenwick-model",
]
[dependencies]
arithmetic-coding-core = { path = "./arithmetic-coding-core", version = "0.1.0" }
bitstream-io = "1.2.0"
thiserror = "1.0.30"
[dev-dependencies]
fenwick-model = { path = "./fenwick-model" }
criterion = "0.3.5"
[[bench]]
name = "sherlock"
harness = false