added database migration and initialization logic to backend, including migration loader and async migration runner

This commit is contained in:
2025-08-05 03:16:36 +02:00
parent 99ef24076e
commit 86b5f83140
8 changed files with 862 additions and 0 deletions

10
backend-rust/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "owly-news-summariser"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
tokio-rusqlite = "0.6.0"
rusqlite = "=0.32.0"