1 2 3 4 5 6 7 8 9 10
//! Indexing engine: `SQLite` [`db_ops`], in-memory [`cache`], walk/orchestration ([`orchestrator`]), and //! off-thread viewer work ([`viewer_async`]). pub mod cache; pub mod db_ops; pub mod orchestrator; pub mod viewer_async; #[cfg(test)] mod tests;