From ab1b650401323aea2dc4c56df289eac4c84ab2c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 16:50:26 +0000 Subject: [PATCH] chore(deps): update sha2 requirement from 0.10 to 0.11 in /miners/rust Updates the requirements on [sha2](https://github.com/RustCrypto/hashes) to permit the latest version. - [Commits](https://github.com/RustCrypto/hashes/compare/groestl-v0.10.0...sha2-v0.11.0) --- updated-dependencies: - dependency-name: sha2 dependency-version: 0.11.0 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..623c2228 100644 --- a/miners/rust/Cargo.toml +++ b/miners/rust/Cargo.toml @@ -15,7 +15,7 @@ path = "src/main.rs" reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } serde = { version = "1", features = ["derive"] } serde_json = "1" -sha2 = "0.10" +sha2 = "0.11" tokio = { version = "1", features = ["full"] } chrono = { version = "0.4", features = ["serde"] } clap = { version = "4", features = ["derive"] }