crc-fast 1.2.2

Fast, hardware-accelerated CRC-32 and CRC-64 checksum calculation using SIMD
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/benchmark.rs"

[[bin]]
name = "arch-check"
path = "src/bin/arch-check.rs"

[build-dependencies.cc]
features = ["parallel"]
version = "1.2"

[dependencies.crc]
version = "3"

[dependencies.digest]
features = ["alloc"]
version = "0.10"

[dependencies.libc]
version = "0.2.171"

[dependencies.rand]
version = "0.9"

[dependencies.regex]
version = "1.11.1"

[dev-dependencies.bindgen]
version = "0.70"

[dev-dependencies.cbindgen]
version = "0.28"

[dev-dependencies.criterion]
version = "0.5"

[features]
alloc = []
optimize_crc32_auto = []
optimize_crc32_avx512_v4s3x3 = []
optimize_crc32_avx512_vpclmulqdq_v3x2 = []
optimize_crc32_neon_blended = []
optimize_crc32_neon_eor3_v9s3x2e_s3 = []
optimize_crc32_neon_v12e_v1 = []
optimize_crc32_neon_v3s4x2e_v2 = []
optimize_crc32_sse_v4s3x3 = []
vpclmulqdq = []

[lib]
bench = true
crate-type = ["lib", "cdylib"]
name = "crc_fast"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(optimized_crc32_iscsi)", "cfg(optimized_crc32_iso_hdlc)"]
level = "warn"
priority = 0

[package]
authors = ["Don MacAskill"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["algorithms", "encoding", "hardware-support"]
description = "Fast, hardware-accelerated CRC-32 and CRC-64 checksum calculation using SIMD"
edition = "2021"
keywords = ["crc", "checksum", "simd", "accelerated", "fast"]
license = "MIT OR Apache-2.0"
name = "crc-fast"
readme = "README.md"
repository = "https://github.com/awesomized/crc-fast-rust"
rust-version = "1.81"
version = "1.2.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true