-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (37 loc) · 969 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "fastmurmur3"
authors = ["Kurt Wolf <[email protected]>"]
version = "0.2.0"
edition = "2021"
description = "Fast non-cryptographic hash, with the benchmarks to prove it."
license = "MIT"
repository = "https://github.com/kurtbuilds/fastmurmur3"
# categories are https://crates.io/category_slugs
categories = [
"cryptography",
]
keywords = [
"hash",
"murmur3",
"murmur",
"hashing",
]
[features]
# Link the C library for murmur3. You likely never need this feature.
# It exists purely for benchmarking and testing purposes.
"murmur3c"= []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "bench"
path = "bench/bench.rs"
harness = false
[dependencies]
[dev-dependencies]
criterion = "0.3.5"
murmur3 = "0.5.1"
sha-1 = "0.10.0"
rand = "0.8.4"
fasthash = "0.4.0"
xxhash-rust = { version = "0.8.2", features = ["xxh3"] }
twox-hash = "1.6.1"
rustc-hash = "1.1.0"