cargo: sqlx expansion

This commit is contained in:
Zynh Ludwig 2024-11-15 18:02:19 -08:00
parent c50374a36a
commit 2ff0d37313

View file

@ -38,9 +38,15 @@ tower = { version = "0.5.0", features = ["util"] }
tower-http = { version = "0.5.0", features = ["fs", "trace", "limit"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
sqlx = { version = "0.8.2", features = ["runtime-tokio", "chrono"] }
# I want to use askama's block feature, this requires unreleased 0.13
[dependencies.sqlx]
version = "0.8.2"
features = ["runtime-tokio", "chrono", "sqlite"]
[profile.dev.package.sqlx-macros]
opt-level = 3
[dependencies.askama]
git = "https://github.com/djc/askama.git"
features = ["with-axum"]