[package]
edition = "2024"
name = "mnemonist-quant"
version = "0.4.3"
authors = ["urmzd"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TurboQuant vector quantization for mnemonist — near-optimal MSE and inner-product quantizers"
homepage = "https://github.com/urmzd/mnemonist"
readme = "README.md"
keywords = [
"quantization",
"vector",
"compression",
"embedding",
"turboquant",
]
categories = [
"algorithms",
"compression",
]
license = "Apache-2.0"
repository = "https://github.com/urmzd/mnemonist"
resolver = "2"
[lib]
name = "mnemonist_quant"
path = "src/lib.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"
[[bench]]
name = "quant_benchmarks"
path = "benches/quant_benchmarks.rs"
harness = false
[dependencies.rand]
version = "0.9"
[dependencies.rand_distr]
version = "0.5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.insta]
version = "1"
features = [
"json",
"yaml",
]
[dev-dependencies.tempfile]
version = "3"