[package]
edition = "2021"
rust-version = "1.81"
name = "tinyquant-bruteforce"
version = "0.0.0"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Brute-force search backend for TinyQuant."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/better-with-models/TinyQuant"
[lib]
name = "tinyquant_bruteforce"
path = "src/lib.rs"
[[test]]
name = "backend"
path = "tests/backend.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.indexmap]
version = "=2.2.6"
[dependencies.tinyquant-core]
version = "=0.0.0"
[dev-dependencies.rand]
version = "0.8"
default-features = false
[dev-dependencies.rand_chacha]
version = "0.3"
default-features = false
[dev-dependencies.serde_json]
version = "1"
[features]
dashmap = []
default = []
simd = ["tinyquant-core/simd"]
std = []