ripvec_core/cache/mod.rs
1//! Persistent index cache with content-addressed object store.
2//!
3//! Stores per-file chunks and embeddings in a git-style object store,
4//! tracks file state in a Merkle-tree manifest, and supports incremental
5//! reindexing by diffing against the filesystem.
6
7pub mod diff;
8pub mod file_cache;
9pub mod manifest;
10pub mod reindex;
11pub mod store;