From cff4d0abbbdd72a3a7d71fd09f4883b21ce8fc70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 06:09:15 +0000 Subject: [PATCH] chore(deps): Update sqlx requirement from 0.7 to 0.8 in /src/core_rust 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.7.0...v0.8.6) --- updated-dependencies: - dependency-name: sqlx dependency-version: 0.8.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- src/core_rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core_rust/Cargo.toml b/src/core_rust/Cargo.toml index 8c49928..0822ce3 100644 --- a/src/core_rust/Cargo.toml +++ b/src/core_rust/Cargo.toml @@ -46,7 +46,7 @@ dashmap = "6.1" smallvec = "1.13" # PostgreSQL async driver (optional, for persistence) -sqlx = { version = "0.7", features = ["postgres", "runtime-tokio", "macros", "uuid", "chrono", "json"], optional = true } +sqlx = { version = "0.8", features = ["postgres", "runtime-tokio", "macros", "uuid", "chrono", "json"], optional = true } # For .env support in persistence dotenv = { version = "0.15", optional = true }