[package]
name = "crc64fast-nvme"
version = "1.1.0"
authors = ["The TiKV Project Developers", "Don MacAskill"]
license = "MIT OR Apache-2.0"
edition = "2021"
keywords = ["crc", "crc64", "simd", "checksum", "nvme"]
categories = ["algorithms", "command-line-utilities", "encoding", "hardware-support"]
repository = "https://github.com/awesomized/crc64fast-nvme"
description = "SIMD accelerated CRC-64/NVME checksum calculation"
readme = "README.md"
rust-version = "1.70.0"
[dependencies]
crc = "3"
lazy_static = { version = "1.4.0", optional = true }
[dev-dependencies]
crc = "3"
proptest = "1"
criterion = "0.5"
rand = "0.8"
[features]
pmull = []
vpclmulqdq = ["lazy_static"]
fake-simd = []
[[bench]]
name = 'benchmark'
harness = false
[profile.release]
strip = true
[build-dependencies]
cbindgen = "0.27.0"
[lib]
crate-type = ["lib", "cdylib"]