oximemo-core 0.8.1

Pure-Rust core for oximemo: file store, index, search, sync
Documentation
1
2
3
4
5
6
7
8
9
//! Storage layer: source-of-truth files plus derived indexes.

pub mod files;
pub mod index;
pub mod search;

pub use files::{FileStore, ParsedFile};
pub use index::{IndexRecord, RedbIndex};
pub use search::TantivySearch;