chore(deps): bump sha2 from 0.10.9 to 0.11.0 (#8963)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jack Amadeo <jackamadeo@squareup.com>
This commit is contained in:
dependabot[bot]
2026-05-27 19:08:54 +00:00
committed by GitHub
parent e9b0d9247b
commit c9945bca5d
8 changed files with 37 additions and 9 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ fn binary_name() -> &'static str {
fn sha256_hex(data: &[u8]) -> String {
let mut hasher = Sha256::new();
hasher.update(data);
format!("{:x}", hasher.finalize())
goose::utils::bytes_to_hex(hasher.finalize())
}
#[derive(serde::Deserialize)]