From 3e0975ff156b7c51687edcdd79c47268c9b73dcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 13:22:05 +0000 Subject: [PATCH] build(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/launchbadge/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 b4451e9..da11d32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ readme= "README.md" [dependencies] casbin = { version = "2.1.0", default-features = false } -sqlx = { version = "0.8", default-features = false, features = [ "macros" ] } +sqlx = { version = "0.9", default-features = false, features = [ "macros" ] } async-trait = "0.1.51" dotenvy = { version = "0.15.0", default-features = false } tokio = { version = "1.10.0", default-features = false, optional = true }