1 | [package] |
2 | name = "simd-adler32" |
3 | authors = ["Marvin Countryman <me@maar.vin>" ] |
4 | license = "MIT" |
5 | version = "0.3.7" |
6 | edition = "2018" |
7 | keywords = ["simd" , "avx2" , "ssse3" , "adler" , "adler32" ] |
8 | categories = ["algorithms" , "no-std" ] |
9 | repository = "https://github.com/mcountryman/simd-adler32" |
10 | description = "A SIMD-accelerated Adler-32 hash algorithm implementation." |
11 | exclude = ["bench" ] |
12 | |
13 | [profile.release] |
14 | debug = true |
15 | opt-level = 2 |
16 | |
17 | [[bench]] |
18 | name = "alts" |
19 | path = "bench/alts.rs" |
20 | harness = false |
21 | |
22 | [[bench]] |
23 | name = "variants" |
24 | path = "bench/variants.rs" |
25 | harness = false |
26 | |
27 | [features] |
28 | default = ["std" , "const-generics" ] |
29 | std = [] |
30 | nightly = [] |
31 | const-generics = [] |
32 | |
33 | [dev-dependencies] |
34 | rand = "0.8" |
35 | criterion = "0.3" |
36 | |
37 | # competition |
38 | adler = "1.0.2" |
39 | adler32 = "1.2.0" |
40 | |