We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b90de0 + 393c801 commit 067e391Copy full SHA for 067e391
1 file changed
src/xxhash3/large.rs
@@ -11,13 +11,13 @@ use crate::{IntoU128, IntoU64};
11
// SIMD implementations.
12
pub mod scalar;
13
14
-#[cfg(target_arch = "aarch64")]
+#[cfg(all(target_arch = "aarch64", feature = "std"))]
15
pub mod neon;
16
17
-#[cfg(target_arch = "x86_64")]
+#[cfg(all(target_arch = "x86_64", feature = "std"))]
18
pub mod avx2;
19
20
21
pub mod sse2;
22
23
macro_rules! dispatch {
0 commit comments