From afb21bb2360e0437f868145ec82a844359a86f66 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 9 Feb 2024 22:23:11 +0100 Subject: [PATCH] fix use of stdsimd feature in std_detect crate --- crates/std_detect/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/std_detect/src/lib.rs b/crates/std_detect/src/lib.rs index 19cc021712..d19128c2d2 100644 --- a/crates/std_detect/src/lib.rs +++ b/crates/std_detect/src/lib.rs @@ -23,7 +23,7 @@ // Temporary hack: needed to build against toolchains from before the mass feature renaming. // Remove this as soon as the stdarch submodule is updated on nightly. #![allow(stable_features)] -#![cfg_attr(not(feature = "rustc-dep-of-std"), feature(stdsimd))] +#![cfg_attr(not(feature = "rustc-dep-of-std"), feature(stdarch_internal))] #![cfg_attr( all( any(target_arch = "x86", target_arch = "x86_64"),