From 8a789240fa1d4aae38427027b9a683be86d8f64b Mon Sep 17 00:00:00 2001 From: Lachlan Deakin Date: Tue, 6 Feb 2024 12:44:47 +1100 Subject: [PATCH] Remove use of `stdsimd` --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e7e0593..26ec417 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,8 +20,6 @@ //! Otherwise, the crate will use `cpuid` at runtime to detect the //! running CPU's features, and enable the appropiate algorithm. -#![cfg_attr(nightly, feature(stdsimd))] - mod combine; mod hasher; #[cfg(all(target_arch = "aarch64", nightly))]