From d3e544885f0f8c6bd07658470d6f5f6fd0a95b57 Mon Sep 17 00:00:00 2001 From: Daiki Mizukami Date: Sat, 15 Jan 2022 23:14:29 +0000 Subject: [PATCH] digest: bump `generic-array` dependency to v0.14.4 (#885) `generic-array` v0.14.4 uses `typenum` v1.12.0, which makes `Unsigned` imply `Default`, which, in turn, is required for `CoreWrapper` to to implement `Digest`. --- digest/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 9ec439e41..037216dda 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["digest", "crypto", "hash"] categories = ["cryptography", "no-std"] [dependencies] -generic-array = "0.14" +generic-array = "0.14.4" crypto-common = { version = "0.1.1", path = "../crypto-common" } block-buffer = { version = "0.10", optional = true }