From 1444c524ff652e98dd1f4163c84e038f46ff79f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 20:15:08 +0000 Subject: [PATCH] deps: bump sha2 from 0.10.9 to 0.11.0 Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.9 to 0.11.0. - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.9...sha2-v0.11.0) --- updated-dependencies: - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++++++++-- crates/fixedformat-worker/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7ffb90..50a9be6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -578,6 +578,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "const-random" version = "0.1.18" @@ -737,6 +743,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" dependencies = [ "block-buffer 0.12.1", + "const-oid", "crypto-common 0.2.2", ] @@ -880,7 +887,7 @@ dependencies = [ "log", "object_store", "percent-encoding", - "sha2", + "sha2 0.11.0", "tokio", "url", "vgi", @@ -2526,6 +2533,17 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", +] + [[package]] name = "shlex" version = "2.0.1" @@ -2993,7 +3011,7 @@ dependencies = [ "rust_decimal", "serde", "serde_json", - "sha2", + "sha2 0.10.9", "thiserror", "tokio", "tower-http", diff --git a/crates/fixedformat-worker/Cargo.toml b/crates/fixedformat-worker/Cargo.toml index 65cbc87..0d151d7 100644 --- a/crates/fixedformat-worker/Cargo.toml +++ b/crates/fixedformat-worker/Cargo.toml @@ -63,5 +63,5 @@ object_store = { version = "0.14", default-features = false, features = [ tokio = { version = "1", default-features = false, features = ["rt", "time"] } async-trait = "0.1" http = "1" -sha2 = "0.10" +sha2 = "0.11" hmac = "0.12"