From 4bc1e14100ce752d1f84bde26ccf4e6b237d644d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Dec 2021 08:22:43 +0000 Subject: [PATCH] Update sha2 requirement from 0.9 to 0.10 Updates the requirements on [sha2](https://github.com/RustCrypto/hashes) to permit the latest version. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/groestl-v0.9.0...sha2-v0.10.0) --- updated-dependencies: - dependency-name: sha2 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 57c93ba..53ef32f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ rand = { version = "0.8", default-features = false } digest = "0.9" base64 = { version = "0.13", default-features = false } hmac-drbg = { version = "0.3", optional = true } -sha2 = { version = "0.9", optional = true, default-features = false } +sha2 = { version = "0.10", optional = true, default-features = false } typenum = { version = "1.12", optional = true } serde = { version = "1.0.104", features = ["derive"], default-features = false } lazy_static = { version = "1.4.0", optional = true }