From aa617c362e4e4cc742bf5f22fe79b82aadb2e450 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Aug 2022 17:45:42 +0000 Subject: [PATCH] Update diesel requirement from 1 to 2 Updates the requirements on [diesel](https://github.com/diesel-rs/diesel) to permit the latest version. - [Release notes](https://github.com/diesel-rs/diesel/releases) - [Changelog](https://github.com/diesel-rs/diesel/blob/master/CHANGELOG.md) - [Commits](https://github.com/diesel-rs/diesel/compare/v1.0.0...v2.0.0) --- updated-dependencies: - dependency-name: diesel 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 ceb1249..cda5d44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ cli = ["dirs", "jose", "structopt", "toml", "atty", "serde_json", "config"] atty = { version = "0.2", optional = true } chrono = { version = "0.4", features = ["serde"], optional = true } config = { version = "0.13", optional = true } -diesel = { version = "1", features = ["postgres"], optional = true } +diesel = { version = "2", features = ["postgres"], optional = true } dirs = { version = "4", optional = true } http = { version = "0.2", optional = true } jsonwebtoken = { version = "7", optional = true }