1//! AstraeaDB Vector Index crate.
2//!
3//! Provides HNSW (Hierarchical Navigable Small World) based approximate
4//! nearest-neighbor search for the Vector-Property Graph model.
56pub mod distance;
7pub mod hnsw;
8pub mod index;
9pub mod persistence;
1011pub use index::HnswVectorIndex;