mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +00:00
Update doc(include) paths.
Since https://github.com/rust-lang/rust/pull/60938 the path root changed and these new paths are required to compile on nightly. Closes #268.
This commit is contained in:
parent
09e2615589
commit
5c18bfb6a7
3 changed files with 3 additions and 3 deletions
|
|
@ -19,7 +19,7 @@
|
||||||
// missing).
|
// missing).
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
all(feature = "nightly", feature = "stage2_build"),
|
all(feature = "nightly", feature = "stage2_build"),
|
||||||
doc(include = "../docs/avx2-notes.md")
|
doc(include = "../../docs/avx2-notes.md")
|
||||||
)]
|
)]
|
||||||
|
|
||||||
pub(crate) mod field;
|
pub(crate) mod field;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
all(feature = "nightly", feature = "stage2_build"),
|
all(feature = "nightly", feature = "stage2_build"),
|
||||||
doc(include = "../docs/ifma-notes.md")
|
doc(include = "../../docs/ifma-notes.md")
|
||||||
)]
|
)]
|
||||||
|
|
||||||
pub mod field;
|
pub mod field;
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
// missing).
|
// missing).
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
all(feature = "nightly", feature = "stage2_build"),
|
all(feature = "nightly", feature = "stage2_build"),
|
||||||
doc(include = "../docs/parallel-formulas.md")
|
doc(include = "../../docs/parallel-formulas.md")
|
||||||
)]
|
)]
|
||||||
|
|
||||||
#[cfg(not(any(target_feature = "avx2", target_feature = "avx512ifma", rustdoc)))]
|
#[cfg(not(any(target_feature = "avx2", target_feature = "avx512ifma", rustdoc)))]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue