fix(deps): update rust crate sha2 to 0.11.0 - #38
renovate[bot] wants to merge 1 commit into
Conversation
3cd5703 to
1fc4455
Compare
1fc4455 to
4691ae2
Compare
4691ae2 to
320582d
Compare
b17acf7 to
503c775
Compare
503c775 to
b66099c
Compare
Maintainership note (2026-09-12)CI: Usage impact:
Breakage: sha2 0.11 / digest 0.11 returns Adoption needed: replace with an explicit lower-hex encoder, e.g. fn hex_encode_lower(bytes: impl AsRef<[u8]>) -> String {
const HEX: &[u8; 16] = b"0123456789abcdef";
let bytes = bytes.as_ref();
let mut out = String::with_capacity(bytes.len() * 2);
for &b in bytes {
out.push(HEX[(b >> 4) as usize] as char);
out.push(HEX[(b & 0xf) as usize] as char);
}
out
}
// then: let hex = hex_encode_lower(hasher.finalize());CloudAgent unavailable on current plan; follow-up adoption PR not opened yet (branch |
b66099c to
69e8a7c
Compare
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
69e8a7c to
7a31d18
Compare
This PR contains the following updates:
0.10.9→0.11.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
RustCrypto/hashes (sha2)
v0.11.0Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.