From fa2ce93ec1bfbd55841b04991b14a9b6f31c4f7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:03:43 +0000 Subject: [PATCH] Update sqlx requirement from 0.6.2 to 0.7.2 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/commits) --- updated-dependencies: - dependency-name: sqlx dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b452a5d..515db93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,12 +25,12 @@ mysql = ["sqlx/mysql", "sqlx/json"] [dependencies] async-session = "3.0.0" -sqlx = { version = "0.6.2", features = ["chrono"] } +sqlx = { version = "0.7.2", features = ["chrono"] } async-std = { version = "1.12.0", optional = true } [dev-dependencies] async-std = { version = "1.12.0", features = ["attributes"] } [dev-dependencies.sqlx] -version = "0.6.2" +version = "0.7.2" features = ["chrono", "runtime-async-std-native-tls"]