Expand description
SQLite implementation of origin_storage::Storage.
SQLite holds cache, read models, sync metadata and settings — never credentials (ADR-0008). Deleting the database file must cost the user nothing but a resync.
rusqlite is blocking, so every call runs on the blocking pool rather than
stalling the async runtime.