Update project dependencies
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-05-15 21:45:36 +02:00
parent f564953524
commit fb46626cff
5 changed files with 2059 additions and 1044 deletions

View File

@ -5,5 +5,5 @@ pub fn sha512(bytes: &[u8]) -> String {
let mut hasher = Sha512::new();
hasher.update(bytes);
let h = hasher.finalize();
format!("{:x}", h)
base16ct::lower::encode_string(h.as_slice())
}