From 5a7c33c9feb4b64dd0dd0bbe956c1d4eef626991 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jun 2022 08:18:46 +0000 Subject: [PATCH] Update sqlx requirement from 0.5 to 0.6 Updates the requirements on [sqlx](https://github.com/launchbadge/sqlx) to permit the latest version. - [Release notes](https://github.com/launchbadge/sqlx/releases) - [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md) - [Commits](https://github.com/launchbadge/sqlx/compare/v0.5.0...v0.6.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 99d93bf..2a14838 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ tide = "0.16.0" tide-sqlx = { version = "0.6.1", features = ["rustls", "postgres"] } tide-tracing = "0.0.11" async-std = { version = "1.8.0", features = ["attributes"] } -sqlx = { version = "0.5", features = ["runtime-async-std-rustls", "postgres", "migrate", "ipnetwork", "uuid", "offline"] } +sqlx = { version = "0.6", features = ["runtime-async-std-rustls", "postgres", "migrate", "ipnetwork", "uuid", "offline"] } uuid = { version = "*", features = ["v4"] } serde_json = "^1.0.45" serde = { version = "1.0", features = ["derive"] }