Skip to content

Commit

Permalink
Fix nightly build
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed Feb 6, 2024
1 parent ba737a3 commit 2401978
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion curve25519-dalek/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
// - Henry de Valence <[email protected]>

#![no_std]
#![cfg_attr(all(curve25519_dalek_backend = "simd", nightly), feature(stdsimd))]
#![cfg_attr(
all(curve25519_dalek_backend = "simd", nightly),
feature(stdarch_x86_avx512)
)]
#![cfg_attr(
all(curve25519_dalek_backend = "simd", nightly),
feature(avx512_target_feature)
Expand Down

0 comments on commit 2401978

Please sign in to comment.