Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Aug 1, 2024
1 parent f0b329c commit 376e829
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/implementations/poseidon2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ pub mod params;

pub mod state_generic_impl;
#[cfg(not(any(
feature = "include_packed_simd",
all(
target_feature = "avx512bw",
target_feature = "avx512cd",
target_feature = "avx512dq",
target_feature = "avx512f",
target_feature = "avx512vl",
),
all(
feature = "include_packed_simd",
any(target_feature = "neon", target_feature = "avx2")
)
)))]
pub use state_generic_impl::*;
Expand Down

0 comments on commit 376e829

Please sign in to comment.