[package]
edition = "2021"
rust-version = "1.80"
name = "qntz"
version = "0.1.1"
authors = ["Arc <attobop@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vector quantization primitives (RaBitQ, ternary, bit packing) for ANN systems."
homepage = "https://github.com/arclabs561/qntz"
documentation = "https://docs.rs/qntz"
readme = "README.md"
keywords = [
"quantization",
"vector-search",
"ann",
"pq",
"compression",
]
categories = [
"algorithms",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/qntz"
[features]
default = []
rabitq = []
ternary = []
[lib]
name = "qntz"
path = "src/lib.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.proptest]
version = "1.9"