mirror of
https://github.com/saymrwulf/betrusted-curve25519-dalek-source.git
synced 2026-09-05 20:30:54 +00:00
Fix rustdoc feature flags to compile on stable.
This commit is contained in:
parent
9ddbf1ba83
commit
e3ca8961fc
2 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ pub mod serial;
|
|||
feature = "simd_backend",
|
||||
any(target_feature = "avx2", target_feature = "avx512ifma")
|
||||
),
|
||||
rustdoc
|
||||
all(feature = "nightly", rustdoc)
|
||||
))]
|
||||
#[cfg_attr(
|
||||
feature = "nightly",
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
#![cfg_attr(
|
||||
any(
|
||||
all(feature = "simd_backend", target_feature = "avx512ifma"),
|
||||
all(rustdoc, feature = "nightly")
|
||||
all(feature = "nightly", rustdoc)
|
||||
),
|
||||
feature(simd_ffi, link_llvm_intrinsics)
|
||||
)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue