From 372237b2b80e8caa326074a47ed0b5007aa8b658 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 14:06:31 +0000 Subject: [PATCH] Update sqlx requirement from 0.8.6 to 0.9.0 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.6...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 a881ca0..78417b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ serde_json = "1.0" lru = "0.16" async-trait = "0.1" futures = "0.3" -sqlx = { version = "0.8.6", default-features = false, features = ["runtime-tokio-rustls", "mysql", "postgres", "chrono", "json", "bigdecimal", "uuid", "ipnet"] } +sqlx = { version = "0.9.0", default-features = false, features = ["runtime-tokio-rustls", "mysql", "postgres", "chrono", "json", "bigdecimal", "uuid", "ipnet"] } redis = { version = "0.25", features = ["tokio-comp", "connection-manager"] } tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }