Skip to content

Commit

Permalink
Fix: FFI API not available in WASM
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita authored and Daniel-Liu-c0deb0t committed Sep 12, 2023
1 parent 7d91f35 commit 96692f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub mod scores;
#[cfg(any(feature = "simd_sse2", feature = "simd_avx2", feature = "simd_wasm", feature = "simd_neon"))]
pub mod cigar;

#[cfg(any(feature = "simd_sse2", feature = "simd_avx2", feature = "simd_neon"))]
#[cfg(any(feature = "simd_sse2", feature = "simd_avx2", feature = "simd_wasm", feature = "simd_neon"))]
#[doc(hidden)]
pub mod ffi;

Expand Down

0 comments on commit 96692f0

Please sign in to comment.