From b70d1b17d0d2f19dbf022a5e700ec4f5b461804c 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))]