feat: add SQLite storage backend for multi-process optimization

This commit is contained in:
Manuel Raimann
2026-02-11 23:21:47 +01:00
parent ed1e9e31da
commit ed80c59795
7 changed files with 423 additions and 3 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ pub enum Error {
TaskError(String),
/// Returned when a storage operation fails.
#[cfg(feature = "journal")]
#[cfg(any(feature = "journal", feature = "sqlite"))]
#[error("storage error: {0}")]
Storage(String),
}