From 424306ab412750c62a0e94be918b3118071a3cf5 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Thu, 18 Aug 2022 11:37:03 +0100 Subject: [PATCH] Update cpufeatures crate. This fixes an incorrect avx2 check. In some scenarios, this check returned true while the avx2 extension was not available (e.g. QEMU emulated CPU). See for more details: https://github.com/RustCrypto/hashes/pull/386. --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 246a4a31..1ce1fc41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1118,9 +1118,9 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" [[package]] name = "cpufeatures" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" +checksum = "1079fb8528d9f9c888b1e8aa651e6e079ade467323d58f75faf1d30b1808f540" dependencies = [ "libc", ]