1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-04 19:16:27 +02:00

cargo fmt

This commit is contained in:
Jack O'Connor 2020-09-10 15:55:02 -04:00
parent 27b7f610e0
commit 004b39a350
4 changed files with 9 additions and 9 deletions

View File

@ -88,18 +88,18 @@ mod avx512;
#[path = "ffi_neon.rs"]
mod neon;
mod portable;
#[cfg(blake3_sse41_rust)]
#[path = "rust_sse41.rs"]
mod sse41;
#[cfg(blake3_sse41_ffi)]
#[path = "ffi_sse41.rs"]
mod sse41;
#[cfg(blake3_sse2_rust)]
#[path = "rust_sse2.rs"]
mod sse2;
#[cfg(blake3_sse2_ffi)]
#[path = "ffi_sse2.rs"]
mod sse2;
#[cfg(blake3_sse41_rust)]
#[path = "rust_sse41.rs"]
mod sse41;
#[cfg(blake3_sse41_ffi)]
#[path = "ffi_sse41.rs"]
mod sse41;
pub mod traits;