From 2afc31c4e078e04c0732254016f0881bee80c190 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Dec 2021 02:12:48 +0000 Subject: [PATCH] Update hkdf requirement from 0.11 to 0.12 Updates the requirements on [hkdf](https://github.com/RustCrypto/KDFs) to permit the latest version. - [Release notes](https://github.com/RustCrypto/KDFs/releases) - [Commits](https://github.com/RustCrypto/KDFs/compare/hkdf-v0.11.0...hkdf-v0.12.0) --- updated-dependencies: - dependency-name: hkdf dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 02ef02e..6c5698b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] arrayref = "0.3" rand = "0.7.3" -hkdf = "0.11" +hkdf = "0.12" aes-gcm = "0.9.4" sha2 = "0.9" curve25519-dalek = "3.1"