feat: add sqlx basic config

This commit is contained in:
Alexander Navarro 2025-02-21 12:55:23 -03:00
parent e0e8700baa
commit 48afdaccea
6 changed files with 1598 additions and 17 deletions

View file

@ -5,10 +5,18 @@ edition = "2021"
[dependencies]
axum = "0.8.1"
axum-sqlx-tx = "0.10.0"
minijinja = { version = "2.7.0", features = ["loader"] }
minijinja-embed = "2.7.0"
notify = "8.0.0"
serde = { version = "1.0.217", features = ["derive"] }
sqlx = { version = "0.8.3", features = [
"chrono",
"derive",
"json",
"postgres",
"runtime-tokio",
] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6.2", features = ["fs", "trace"] }