[[bench]]
name = "bench"
path = "benches/bench.rs"
[dependencies.rand_core]
version = "0.9"
[dev-dependencies.fnv]
version = "1"
[dev-dependencies.metrohash]
version = "1"
[dev-dependencies.twox-hash]
version = "2.1"
[[example]]
name = "function"
path = "examples/function.rs"
[[example]]
name = "hasher_trait"
path = "examples/hasher_trait.rs"
[[example]]
name = "rng_traits"
path = "examples/rng_traits.rs"
[features]
mum32bit = []
[lib]
name = "wyhash"
path = "src/lib.rs"
[package]
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "no-std"]
description = "Rust implementation of the WyHash fast portable non-cryptographic hashing algorithm and random number generator."
documentation = "https://docs.rs/wyhash"
edition = "2018"
homepage = "https://github.com/eldruin/wyhash-rs"
include = ["/**/*.rs", "/Cargo.toml", "/README.md", "/CHANGELOG.md", "/LICENSE-APACHE", "/LICENSE-MIT"]
keywords = ["hash", "hasher", "wyhash", "rng", "random"]
license = "MIT OR Apache-2.0"
name = "wyhash"
readme = "README.md"
repository = "https://github.com/eldruin/wyhash-rs"
version = "0.6.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
[[test]]
name = "integration"
path = "tests/integration.rs"