From 30c1097337a228064602df12ac34c15909ce079e Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 26 Feb 2024 14:56:21 +0700 Subject: [PATCH] deps: Update `ahash` to fix "unknown feature `stdsimd`" error. Rust has removed the `stdsimd` feature: https://github.com/rust-lang/rust/pull/117372 This broke `ahash` for versions prior to `0.8.7`: https://github.com/tkaitchuck/aHash/pull/183 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0d1769b4e0..669a8530a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,9 +35,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "ahash" -version = "0.8.6" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +checksum = "d713b3834d76b85304d4d525563c1276e2e30dc97cc67bfb4585a4a29fc2c89f" dependencies = [ "cfg-if", "getrandom",