| Crates.io | nvs-core |
| lib.rs | nvs-core |
| version | 0.1.0 |
| created_at | 2025-09-24 20:29:33.094591+00 |
| updated_at | 2025-09-24 20:29:33.094591+00 |
| description | Native Vector Store (Rust) core: bundle format, mmap reader, vector/BM25/hybrid search |
| homepage | |
| repository | https://github.com/martinboros/native-vector-store |
| max_upload_size | |
| id | 1853791 |
| size | 158,718 |
Native Vector Store — Rust core library.
What it provides:
nvs_core::VectorStoreQuick start
use nvs_core::VectorStore;
let store = VectorStore::open("/path/to/bundle")?;
let hits = store.search_bm25("alpha beta", 10);
See documentation/MANIFEST_SPEC.md in the repository for the bundle format.
License: MIT