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