diff --git a/blueprint/cli/Cargo.toml.liquid b/blueprint/cli/Cargo.toml.liquid index afd3bbd5..cc24e3dd 100644 --- a/blueprint/cli/Cargo.toml.liquid +++ b/blueprint/cli/Cargo.toml.liquid @@ -30,7 +30,7 @@ liquid = "~0.26" {{project-name}}-config = { path = "../config" } {% unless template_type == "minimal" -%} regex = "1.11" -sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "migrate", "chrono" ] } +sqlx = { version = "0.9", features = [ "runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "migrate", "chrono" ] } url = "2.5" {%- endunless %} tokio = { version = "1.34", features = ["full"] } diff --git a/blueprint/db/Cargo.toml.liquid b/blueprint/db/Cargo.toml.liquid index 04ca10b1..6241e106 100644 --- a/blueprint/db/Cargo.toml.liquid +++ b/blueprint/db/Cargo.toml.liquid @@ -21,7 +21,7 @@ fake = { version = "4.0", features = ["derive"], optional = true } rand = { version = "0.9", optional = true } regex = { version = "1.10", optional = true } serde = { version = "1.0", features = ["derive"] } -sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "migrate", "chrono" ] } +sqlx = { version = "0.9", features = [ "runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "migrate", "chrono" ] } thiserror = "2.0" uuid = { version = "1.5", features = ["serde"] } validator = { version = "0.20", features = ["derive"] }