We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41689be commit 51acd2aCopy full SHA for 51acd2a
curve25519-dalek/src/lib.rs
@@ -10,7 +10,14 @@
10
// - Henry de Valence <hdevalence@hdevalence.ca>
11
12
#![no_std]
13
-#![cfg_attr(all(curve25519_dalek_backend = "simd", nightly), feature(stdsimd))]
+#![cfg_attr(
14
+ all(
15
+ curve25519_dalek_backend = "simd",
16
+ nightly,
17
+ any(target_arch = "x86", target_arch = "x86_64")
18
+ ),
19
+ feature(stdarch_x86_avx512)
20
+)]
21
#![cfg_attr(
22
all(curve25519_dalek_backend = "simd", nightly),
23
feature(avx512_target_feature)
0 commit comments