From b7972893e3b9599e44129925c44f39ed162cce66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 08:20:15 +0000 Subject: [PATCH] chore(deps): update sqlx requirement from 0.7 to 0.8 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.0) --- updated-dependencies: - dependency-name: sqlx 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 588dbb2..7cf0101 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ diesel = { version = "2.1", optional = true, default-features = false } diesel_migrations = { version = "2.1", optional = true, default-features = false} http = "1.0.0" percent-encoding = { version = "2.3", optional = true } -sqlx = { version = "0.7", features = ["migrate", "macros"], optional = true, default-features = false } +sqlx = { version = "0.8", features = ["migrate", "macros"], optional = true, default-features = false } thiserror = "1" tokio = { version = "1", features = ["rt-multi-thread"], optional = true, default-features = false } tracing = { version = "0.1", default-features = false }