From bf87aa03e108d045ebe67261269611e0430ac642 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 01:44:35 +0000 Subject: [PATCH] Update reqwest requirement from 0.11.23 to 0.12.1 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.23...v0.12.1) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- judger/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/judger/Cargo.toml b/judger/Cargo.toml index 009119d..f28ee96 100644 --- a/judger/Cargo.toml +++ b/judger/Cargo.toml @@ -12,7 +12,7 @@ judge-core = { path = "../judge-core" } clap = { version = "4.0", features = ["derive"] } # Client -reqwest = { version = "0.11.23", features = ["json"] } +reqwest = { version = "0.12.1", features = ["json"] } # Async runtime tokio = { version = "1", features = ["full"] }