set up sqlite with sqlx

This commit is contained in:
insects 2025-02-06 11:56:10 +01:00
parent 9397de1d33
commit dbcac84794
4 changed files with 1438 additions and 17 deletions

View file

@ -12,5 +12,10 @@ maud = { version = "0.27.0", features = ["axum"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde_path_to_error = "0.1.16"
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-rustls-ring-webpki",
"sqlite",
] }
tokio = { version = "1.43.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["fs"] }