From 2df0ecbb72f7fef73aa3345eb93c5ac3652cd130 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 16:50:14 +0000 Subject: [PATCH] chore(deps): update reqwest requirement in /miners/rust 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.12.0...v0.12.28) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.28 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- miners/rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miners/rust/Cargo.toml b/miners/rust/Cargo.toml index aea27298..f7a5013a 100644 --- a/miners/rust/Cargo.toml +++ b/miners/rust/Cargo.toml @@ -12,7 +12,7 @@ name = "rustchain-miner" path = "src/main.rs" [dependencies] -reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } +reqwest = { version = "0.13", features = ["json", "rustls-tls"], default-features = false } serde = { version = "1", features = ["derive"] } serde_json = "1" sha2 = "0.10"