Add MongoDB support and CLI for migrations and seed

This commit is contained in:
2025-08-19 16:50:19 -04:00
parent 8a05f4edac
commit 899cd073c0
14 changed files with 1710 additions and 52 deletions

View File

@@ -5,7 +5,13 @@ edition = "2024"
[dependencies]
axum = "0.8.4"
base64 = "0.22.1"
bson = { version = "2.15.0", features = ["chrono-0_4"] }
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.45", features = ["derive"] }
dotenvy = "0.15.7"
mongodb = "3.2.4"
openssl = "0.10.73"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-native-tls"] }