fond-store 0.2.2

SQLite persistence, migrations, and FTS5 search for fond recipe manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! SQLite persistence, migrations, and FTS5 search for fond.
//!
//! The database is a derived index — `.cook` recipe files on disk
//! are the source of truth, and `fond reindex` rebuilds the DB
//! from those files. The database is disposable; the files are sacred.

mod db;
mod error;
mod paths;
pub mod reindex;
mod repo;

pub use db::*;
pub use error::*;
pub use paths::*;
pub use reindex::{ReindexReport, reindex};
pub use repo::*;