1[package]
2name = "crc32fast"
3version = "1.2.1"
4license = "MIT OR Apache-2.0"
5authors = [
6  "Sam Rijs <srijs@airpost.net>",
7  "Alex Crichton <alex@alexcrichton.com>"
8]
9description = "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation"
10repository = "https://github.com/srijs/rust-crc32fast"
11readme = "README.md"
12keywords = ["checksum", "crc", "crc32", "simd", "fast"]
13
14[dependencies]
15cfg-if = "1.0"
16
17[dev-dependencies]
18bencher = "0.1"
19quickcheck = { version = "0.9", default-features = false }
20rand = "0.7"
21
22[features]
23default = ["std"]
24std = []
25nightly = []
26
27[[bench]]
28name = "bench"
29harness = false
30