gitextract_fy6189iu/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE.Apache2 ├── LICENSE.MIT ├── README.md ├── appveyor.yml ├── benches/ │ └── bench.rs ├── ci/ │ └── miri.sh ├── src/ │ ├── integer_simd.rs │ ├── lib.rs │ ├── naive.rs │ └── simd/ │ ├── aarch64.rs │ ├── generic.rs │ ├── mod.rs │ ├── wasm.rs │ ├── x86_avx2.rs │ └── x86_sse2.rs └── tests/ └── check.rs