[[bench]]
harness = false
name = "city_benchmark"
path = "benches/city_benchmark.rs"
[[bench]]
harness = false
name = "fnv_benchmark"
path = "benches/fnv_benchmark.rs"
[[bench]]
harness = false
name = "hash_benchmark"
path = "benches/hash_benchmark.rs"
[[bench]]
harness = false
name = "hashmap_benchmark"
path = "benches/hashmap_benchmark.rs"
[[bench]]
harness = false
name = "hashmap_key_length_benchmark"
path = "benches/hashmap_key_length_benchmark.rs"
[[bench]]
harness = false
name = "murmur_benchmark"
path = "benches/murmur_benchmark.rs"
[[bench]]
harness = false
name = "rendezvous_benchmark"
path = "benches/rendezvous_benchmark.rs"
[[bin]]
name = "simplehash"
path = "src/main.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.serde_json]
version = "1.0"
[lib]
name = "simplehash"
path = "src/lib.rs"
[package]
authors = ["Cole Mackenzie <colemackenzie1@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures"]
description = "A simple, fast Rust library implementing common non-cryptographic hash functions: FNV, MurmurHash3, CityHash, and Rendezvous hashing"
edition = "2024"
keywords = ["murmurhash", "fnv", "cityhash", "rendezvous", "hash"]
license = "MIT"
name = "simplehash"
readme = "README.md"
repository = "https://github.com/cmackenzie1/simplehash"
version = "0.1.3"