From d1df9610c12fc1660345687005880bc1f8a9b8fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 17:12:50 +0000 Subject: [PATCH] Update sqlx requirement from 0.6 to 0.7 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.6.0...v0.6.3) --- 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 24d7218..4a4683b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ hyper = "0.14" # sea orm sea-orm = { version = "0.11", default-features = false, features = ["runtime-tokio-rustls", "sqlx-sqlite", "sqlx-postgres", "sqlx-mysql"] } sea-orm-migration = { version = "0.11", default-features = false, features = ["sqlx-sqlite", "sqlx-postgres", "sqlx-mysql"] } -sqlx = { version = "0.6", default-features = false, features = ["sqlite", "postgres", "mysql"] } +sqlx = { version = "0.7", default-features = false, features = ["sqlite", "postgres", "mysql"] } # config/cli clap = { version = "4.0", features = ["derive"] }