cargo: sqlx expansion
This commit is contained in:
parent
c50374a36a
commit
2ff0d37313
1 changed files with 7 additions and 1 deletions
|
@ -38,9 +38,15 @@ tower = { version = "0.5.0", features = ["util"] }
|
||||||
tower-http = { version = "0.5.0", features = ["fs", "trace", "limit"] }
|
tower-http = { version = "0.5.0", features = ["fs", "trace", "limit"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
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
|
# 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]
|
[dependencies.askama]
|
||||||
git = "https://github.com/djc/askama.git"
|
git = "https://github.com/djc/askama.git"
|
||||||
features = ["with-axum"]
|
features = ["with-axum"]
|
||||||
|
|
Loading…
Reference in a new issue