ripvec_core/cache/mod.rs
1//! Post-v3.0.0: only `config` survives.
2//!
3//! The disk-cache machinery (manifest, store, diff, file_cache, reindex)
4//! was built for the doomed transformer engines and is gone. The surviving
5//! ripvec engine is cacheless — `RipvecIndex` is built on first query
6//! against a root and lives in process memory.
7//!
8//! `config` is retained because `.ripvec/config.toml` is still consulted
9//! by the search engine for repo-local search settings (extension
10//! whitelists, ignore globs).
11
12pub mod config;