hud_slice_by_8/
lib.rs

1#![doc=include_str!("../README.md")]
2#![no_std]
3//#![cfg_attr(all(target_arch = "aarch64", target_feature = "crc"), feature(stdsimd))]
4
5mod algorithm;
6pub use algorithm::generate_table;
7pub use algorithm::slice_by_8;
8pub use algorithm::slice_by_8_with_seed;
9
10pub mod crc32;
11pub mod crc32c;