ANW-23 remove tantivy from v1; NoteStore is the only authoritative store

This commit is contained in:
Andreas Brenner 2026-05-14 18:33:20 +02:00
parent 30c42131b7
commit ec650e6c66
9 changed files with 41 additions and 1169 deletions

View file

@ -1,14 +1,15 @@
//! Anwesen: read-only HTTP daemon over a markdown vault.
//!
//! The binary in `main.rs` wires this library to a CLI; submodules implement
//! the vault scanner, the Tantivy index, the filesystem watcher, the
//! supervisor tree, and the HTTP surface as those issues land.
//! the vault scanner, the in-memory note store, the filesystem watcher, the
//! supervisor tree, and the HTTP surface. See
//! [[ADR-009 Reverse ADR-002 In-Memory Evaluation No Tantivy]] for why v1
//! ships without a search index.
pub mod app;
pub mod doctor;
pub mod health;
pub mod http;
pub mod index;
pub mod query;
pub mod store;
pub mod vault;