diff --git a/Cargo.toml b/Cargo.toml index 3a8e49c..1890d2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]