[package]
edition = "2021"
rust-version = "1.89"
name = "ordvec"
version = "0.2.0"
build = false
exclude = [
".github/",
".gitignore",
"CLAUDE.md",
"deny.toml",
"docs/ALTERNATIVES_CONSIDERED.md",
"docs/FOLLOWUP_BODY_KERNEL_TIE_BREAK.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Training-free ordinal & sign quantization for vector retrieval"
homepage = "https://github.com/Fieldnote-Echo/ordvec"
readme = "README.md"
keywords = [
"vector-search",
"quantization",
"nearest-neighbor",
"ann",
"simd",
]
categories = [
"algorithms",
"science",
"compression",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Fieldnote-Echo/ordvec"
[package.metadata.docs.rs]
all-features = false
[features]
experimental = []
[lib]
name = "ordvec"
path = "src/lib.rs"
[[example]]
name = "bench_rank"
path = "examples/bench_rank.rs"
[[test]]
name = "deprecated_aliases"
path = "tests/deprecated_aliases.rs"
[[test]]
name = "index"
path = "tests/index/main.rs"
[[test]]
name = "redteam_alpha"
path = "tests/redteam_alpha.rs"
[[test]]
name = "redteam_beta"
path = "tests/redteam_beta.rs"
[[test]]
name = "redteam_delta"
path = "tests/redteam_delta.rs"
[[test]]
name = "redteam_gamma"
path = "tests/redteam_gamma.rs"
[dependencies.ordered-float]
version = "5"
[dependencies.rayon]
version = "1.10"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.rand_chacha]
version = "0.10"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1