From cf68c36b4bd930edceb2ae754b0527d13a837b8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Feb 2023 02:49:02 +0000 Subject: [PATCH] rust: bump hmac from 0.11.0 to 0.12.1 Bumps [hmac](https://github.com/RustCrypto/MACs) from 0.11.0 to 0.12.1. - [Release notes](https://github.com/RustCrypto/MACs/releases) - [Commits](https://github.com/RustCrypto/MACs/compare/hmac-v0.11.0...hmac-v0.12.1) --- updated-dependencies: - dependency-name: hmac dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++-------------- runtime/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c3f113d7e..1fa716e84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -683,16 +683,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "crypto-mac" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" -dependencies = [ - "generic-array", - "subtle", -] - [[package]] name = "ctr" version = "0.8.0" @@ -1355,12 +1345,11 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hmac" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "crypto-mac", - "digest 0.9.0", + "digest 0.10.6", ] [[package]] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index ba0d1fa17..ebde61406 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -47,7 +47,7 @@ sp800-185 = "0.2.0" zeroize = "1.4" intrusive-collections = "0.9.4" sha2 = "0.9.9" -hmac = "0.11.0" +hmac = "0.12.1" honggfuzz = "0.5.55" arbitrary = { version = "1.2.0", features = ["derive"] } num-bigint = "0.4"