From 800b5b242175caaee012dc6bbee6691b19be1bb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 00:01:40 +0000 Subject: [PATCH] chore(deps): update sqlx requirement from 0.8 to 0.9 Updates the requirements on [sqlx](https://github.com/launchbadge/sqlx) to permit the latest version. - [Changelog](https://github.com/transact-rs/sqlx/blob/main/CHANGELOG.md) - [Commits](https://github.com/launchbadge/sqlx/compare/v0.8.0...v0.8.6) --- updated-dependencies: - dependency-name: sqlx dependency-version: 0.8.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 856fc247..cf644ae5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ tower-http = { version = "0.6", features = ["trace", "cors", "compression-gzip hyper = { version = "1", features = ["full"] } # Database -sqlx = { version = "0.8", features = ["runtime-tokio-native-tls", "postgres", "uuid", "time", "chrono", "json"] } +sqlx = { version = "0.9", features = ["runtime-tokio-native-tls", "postgres", "uuid", "time", "chrono", "json"] } # Redis deadpool-redis = { version = "0.16", features = ["rt_tokio_1"] }