From faf8da4a9188ca18af701feab287ca51cc3e272a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 16:47:20 +0000 Subject: [PATCH] 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.9.0) --- updated-dependencies: - dependency-name: sqlx dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vidformer-igni/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vidformer-igni/Cargo.toml b/vidformer-igni/Cargo.toml index 90f6fe8..f3237b6 100644 --- a/vidformer-igni/Cargo.toml +++ b/vidformer-igni/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" pretty_env_logger = "0.5.0" log = "0.4.20" clap = { version = "4.4.6", features = ["derive"] } -sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "uuid", "chrono" ] } +sqlx = { version = "0.9", features = [ "runtime-tokio", "postgres", "uuid", "chrono" ] } uuid = { version = "1.7.0", features = ["v4", "fast-rng"] } tabled = "0.20.0" vidformer = { path = "../vidformer" }