Skip to content

Commit

Permalink
Add missing use statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Lynnesbian committed Sep 23, 2024
1 parent b956608 commit 859221b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ pub use crate::encode::hex_to;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use crate::decode::{hex_check_sse, hex_check_sse_with_case};

#[cfg(target_arch = "aarch64")]
pub use crate::decode::{hex_check_neon, hex_check_neon_with_case};

#[derive(Copy, Clone, PartialEq, Eq, Debug)]
#[allow(dead_code)]
pub(crate) enum Vectorization {
Expand Down

0 comments on commit 859221b

Please sign in to comment.