add sqlite

This commit is contained in:
Wavering Ana 2025-01-29 18:52:49 -05:00
parent 8a3ee20a9d
commit daa1323b88
8 changed files with 707 additions and 254 deletions

View file

@ -14,7 +14,7 @@ actix-web = "4.4"
actix-files = "0.6"
actix-cors = "0.6"
tokio = { version = "1.36", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio-native-tls", "postgres", "uuid", "chrono"] }
sqlx = { version = "0.8", features = ["runtime-tokio-native-tls", "postgres", "sqlite", "chrono"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
@ -31,3 +31,4 @@ lazy_static = "1.4"
argon2 = "0.5.3"
rand = { version = "0.8", features = ["std"] }
mime_guess = "2.0.5"
futures = "0.3.31"