From 16720b70ee846566ec31501ae99cdab0231691ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 07:17:00 +0000 Subject: [PATCH] build(deps): 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.0) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- testing/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 5a5694e..3a07961 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -13,7 +13,7 @@ categories = ["web-programming", "development-tools::testing"] [dependencies] kvarn = { path = "../", features = ["full"], version = "0.6.0" } -reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-manual-roots"] } +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-manual-roots"] } rand = "0.8" rcgen = "0.12" tokio = { version = "1.24", features = ["macros"] }