1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
[package]
name = "crc32c"
version = "0.6.8"
authors = ["Zack Owens"]
license = "Apache-2.0/MIT"
keywords = ["crc", "simd"]
categories = ["algorithms"]
repository = "https://github.com/zowens/crc32c"
homepage = "https://github.com/zowens/crc32c"
documentation = "http://docs.rs/crc32c"
edition = "2018"
description = "Safe implementation for hardware accelerated CRC32C instructions with software fallback"
exclude = [
"benches/*",
"tests/*",
]
build = "build.rs"
[dev-dependencies]
rand = { version ="0.8", features=["alloc", "getrandom"] }
criterion = "0.5"
[build-dependencies]
rustc_version = "0.4"
[[bench]]
name = "rand"
path = "benches/rand.rs"
harness = false
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
|