[package] name = "sqlite-storage-spike" version = "0.1.0" edition = "2021" publish = false description = "Chanora PoC: SQLite-backed LocalDatabaseRepository with a forward-only migration mechanism and repository pattern." # Not product code. See docs/architecture/proof-of-concept-plan.md ยง4. # Authority: SRS-089 (acceptance criteria: embedded store + migration mechanism), # SDD-077, SysDes-033/036/049/091. [lib] name = "sqlite_storage_spike" path = "src/lib.rs" [[bin]] name = "sqlite-storage-cli" path = "src/main.rs" [dependencies] rusqlite = { version = "0.32", features = ["bundled"] } thiserror = "2" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tempfile = "3" [dev-dependencies]