1[package]
2name = "foldhash"
3version = "0.1.5"
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 = []
18
19[dependencies]
20
21[dev-dependencies]
22criterion = "0.5"
23hashbrown = "0.14"
24uuid = "1.8"
25rand = "0.8"
26ahash = "0.8"
27fxhash = "0.2"
28chrono = "0.4"
29
30[lib]
31bench = false
32
33[[bench]]
34name = "bench"
35path = "benches/bench.rs"
36harness = false
37
38[[bench]]
39name = "avalanche"
40path = "benches/avalanche.rs"
41harness = false
42
43[profile.release]
44lto = "thin"
45