From 0e2e9c1331c674a0995bba693e09608627ad7cd1 Mon Sep 17 00:00:00 2001 From: Zack Owens Date: Tue, 6 Feb 2024 14:56:13 -0800 Subject: [PATCH] Add back feature for SIMD on AARCH64 --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 26ec417..ae61185 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,6 +20,8 @@ //! Otherwise, the crate will use `cpuid` at runtime to detect the //! running CPU's features, and enable the appropiate algorithm. +#![cfg_attr(all(target_arch = "aarch64", nightly), feature(stdarch_arm_crc32))] + mod combine; mod hasher; #[cfg(all(target_arch = "aarch64", nightly))]