From 547ed14ec019ac9a77e4820f3fecaed18ae4da90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 16:54:16 +0000 Subject: [PATCH] chore(deps): update reqwest requirement in /tools/cli-wallet 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.13.4) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tools/cli-wallet/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli-wallet/Cargo.toml b/tools/cli-wallet/Cargo.toml index f2ebd87e..a9085cfc 100644 --- a/tools/cli-wallet/Cargo.toml +++ b/tools/cli-wallet/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" clap = { version = "4.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "0.11", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } tokio = { version = "1.0", features = ["full"] } sha2 = "0.10" hex = "0.4"