Skip to main content

deck_store/
lib.rs

1//! deck-store — encrypted, durable session store.
2//!
3//! Phase 1 ships a [`SqliteStore`] backed by a plain (unencrypted) `SQLite`
4//! file. `age`-encrypted-at-rest is implemented via a "decrypt to tmpfs on
5//! open, re-encrypt on close" lifecycle in Phase 2; the on-disk layout is
6//! already final and lives at `$XDG_DATA_HOME/ono-sendai/decks/<id>/`.
7
8pub mod sqlite;
9
10pub use sqlite::SqliteStore;