diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2025-06-23 07:39:36 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2025-06-23 07:39:36 +0000 |
| commit | be8ec280a056be688913c1a35c589ef406f72f50 (patch) | |
| tree | 959996d979443483576c9054ab28824995d18c2b /Cargo.lock | |
| parent | b1ca877d924b15404be1d51df4bddb571d69a5be (diff) | |
Add `Keccak512Hasher`
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -279,6 +279,15 @@ dependencies = [ ] [[package]] +name = "keccak" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +dependencies = [ + "cpufeatures", +] + +[[package]] name = "libc" version = "0.2.172" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -304,6 +313,7 @@ dependencies = [ "hex", "rand", "sha2", + "sha3", ] [[package]] @@ -526,6 +536,16 @@ dependencies = [ ] [[package]] +name = "sha3" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +dependencies = [ + "digest", + "keccak", +] + +[[package]] name = "syn" version = "2.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" |
