//! # Seekr
//!
//! A semantic code search engine, smarter than grep.
//!
//! Seekr supports three search modes:
//! - **Text regex**: High-performance regular expression matching
//! - **Semantic vector**: ONNX-based local embedding + HNSW approximate nearest neighbor search
//! - **AST pattern**: Function signature pattern matching via Tree-sitter
//!
//! 100% local execution — no data leaves your machine.
// Core modules — will be implemented in subsequent phases
/// Current index format version.
/// Increment this when the on-disk index format changes.
/// v2: switched serialization from JSON to bincode for faster save/load.
pub const INDEX_VERSION: u32 = 2;
/// Seekr version string (from Cargo.toml).
pub const VERSION: &str = env!;