Expand description
Async SQLite access helpers backed by tokio_rusqlite (foundation layer).
Provides a writer/reader AsyncDatabase connection pair that bridges tokio
and SQLite’s single-writer model. All async repository implementations
(task_repository, persistence/repository, session_store) build on top
of this layer.
Structs§
- Async
Database - Async wrapper around SQLite using
tokio_rusqlite.
Functions§
- flatten_
err - Flatten
tokio_rusqlite::Errorintoanyhow::Error.