Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
rubdos committed Aug 21, 2024
1 parent 5c15111 commit 2aa38c9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions curve25519-dalek/src/backend/vector/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,16 @@
#![doc = include_str!("../../../docs/parallel-formulas.md")]

#[allow(missing_docs)]
#[cfg(all(target_arch="x86_64"))]
#[cfg(target_arch = "x86_64")]
pub mod packed_simd;


#[cfg(all(target_arch="x86_64"))]
#[cfg(target_arch = "x86_64")]
pub mod avx2;

#[cfg(all(nightly, target_arch="x86_64"))]
#[cfg(all(nightly, target_arch = "x86_64"))]
pub mod ifma;

#[cfg(all(nightly, target_arch="aarch64"))]
#[cfg(all(nightly, target_arch = "aarch64"))]
pub mod neon;

pub mod scalar_mul;

0 comments on commit 2aa38c9

Please sign in to comment.