1[package]
2name = "foldhash"
3version = "0.2.0"
4authors = ["Orson Peters <orsonpeters@gmail.com>"]
5license = "Zlib"
6repository = "https://github.com/orlp/foldhash"
7readme = "README.md"
8keywords = ["hash", "hasher", "no-std"]
9categories = ["algorithms", "no-std"]
10description = "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm."
11edition = "2021"
12exclude = ["benches", "tools", "assets"]
13rust-version = "1.60"
14
15[features]
16default = ["std"]
17std = []
18nightly = []
19
20[dependencies]
21
22[dev-dependencies]
23criterion = "0.5"
24hashbrown = "0.15"
25uuid = "1.8"
26rand = "0.8"
27ahash = "0.8"
28fxhash = "0.2"
29rapidhash = "3.1.0"
30chrono = "0.4"
31
32[lib]
33bench = false
34
35[[bench]]
36name = "bench"
37path = "benches/bench.rs"
38harness = false
39
40[[bench]]
41name = "avalanche"
42path = "benches/avalanche.rs"
43harness = false
44
45[profile.release]
46lto = "thin"
47