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