From 67625763c1912f9d1ed770f9577c8b5cf152d1c2 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 25 May 2025 18:21:55 -0600 Subject: [PATCH] curve: remove `feature(avx512_target_feature)` (#757) The build is currently broken because it's been stabilized: error: the feature `avx512_target_feature` has been stable since 1.89.0-nightly and no longer requires an attribute to enable --- curve25519-dalek/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/curve25519-dalek/src/lib.rs b/curve25519-dalek/src/lib.rs index d866645..58f4d78 100644 --- a/curve25519-dalek/src/lib.rs +++ b/curve25519-dalek/src/lib.rs @@ -18,10 +18,6 @@ ), feature(stdarch_x86_avx512) )] -#![cfg_attr( - all(curve25519_dalek_backend = "simd", nightly), - feature(avx512_target_feature) -)] #![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg, doc_cfg_hide))] #![cfg_attr(docsrs, doc(cfg_hide(docsrs)))] //------------------------------------------------------------------------