From 79e59722cda2be290b41131106b17e386f61793b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:29:16 +0000 Subject: [PATCH] Update reqwest requirement from 0.11 to 0.12 Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.0...v0.12.1) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crypt-cloud/Cargo.toml | 2 +- crypt-ui/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crypt-cloud/Cargo.toml b/crypt-cloud/Cargo.toml index 39a27d1..c722aa9 100644 --- a/crypt-cloud/Cargo.toml +++ b/crypt-cloud/Cargo.toml @@ -12,7 +12,7 @@ thiserror = { workspace = true } crypt-core = { path = "../crypt-core" } -reqwest = { version = "0.11", features = ["json"] } # HTTP client +reqwest = { version = "0.12", features = ["json"] } # HTTP client tokio = { version = "1", features = ["full"] } # Async Runtime serde_json = "1.0" async-recursion = "1.0.5" # Handles Async Recursion boxing \ No newline at end of file diff --git a/crypt-ui/Cargo.toml b/crypt-ui/Cargo.toml index 92acf75..f14a0ca 100644 --- a/crypt-ui/Cargo.toml +++ b/crypt-ui/Cargo.toml @@ -12,7 +12,7 @@ workspace = "../" [dependencies] # General tokio = { version = "1", features = ["full"] } # Async Runtime -reqwest = { version = "0.11", features = ["json","multipart"] } # HTTP client +reqwest = { version = "0.12", features = ["json","multipart"] } # HTTP client # CLI clap = { version = "4.4.11", features = ["derive", "cargo"] } clap-markdown = "0.1.3"