[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-search-vector"
version = "0.3.1"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = false
exclude = ["benchmarks/competitors/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent, mutable, bounded vector candidate search for Rust and Weavatrix"
homepage = "https://weavatrix.com"
documentation = "https://docs.rs/weavatrix-search-vector"
readme = "README.md"
keywords = [
"vector",
"search",
"hnsw",
"cosine",
"weavatrix",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/weavatrix-search-vector"
[lib]
name = "weavatrix_search_vector"
path = "src/lib.rs"
[[test]]
name = "adapters"
path = "tests/adapters.rs"
[[test]]
name = "mutable_index"
path = "tests/mutable_index.rs"
[[test]]
name = "quantized_index"
path = "tests/quantized_index.rs"
[[test]]
name = "storage"
path = "tests/storage.rs"
[[test]]
name = "vector_index_basics"
path = "tests/vector_index_basics.rs"
[[test]]
name = "vector_index_recall"
path = "tests/vector_index_recall.rs"
[[bench]]
name = "vector_features"
path = "benches/vector_features.rs"
harness = false
[[bench]]
name = "vector_search"
path = "benches/vector_search.rs"
harness = false
[dependencies]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"