Skip to content

Commit afb21bb

Browse files
committed
fix use of stdsimd feature in std_detect crate
1 parent 894fe28 commit afb21bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/std_detect/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Temporary hack: needed to build against toolchains from before the mass feature renaming.
2424
// Remove this as soon as the stdarch submodule is updated on nightly.
2525
#![allow(stable_features)]
26-
#![cfg_attr(not(feature = "rustc-dep-of-std"), feature(stdsimd))]
26+
#![cfg_attr(not(feature = "rustc-dep-of-std"), feature(stdarch_internal))]
2727
#![cfg_attr(
2828
all(
2929
any(target_arch = "x86", target_arch = "x86_64"),

0 commit comments

Comments
 (0)