ahash 0.2.16

A non-cryprographic hash function using AES-NI for high performance
Documentation
[[bench]]
harness = false
name = "ahash"
path = "tests/bench.rs"
[dependencies.const-random]
optional = true
version = "0.1.6"
[dev-dependencies.criterion]
version = "0.2.10"

[dev-dependencies.fnv]
version = "1.0.5"

[dev-dependencies.fxhash]
version = "0.2.1"

[dev-dependencies.hex]
version = "0.3.2"

[dev-dependencies.no-panic]
version = "0.1.10"

[dev-dependencies.rand]
version = "0.6.5"

[dev-dependencies.seahash]
version = "3.0.5"

[features]
compile-time-rng = ["const-random"]
default = ["compile-time-rng"]
std = []

[lib]
bench = true
doc = true
doctest = true
name = "ahash"
path = "src/lib.rs"
test = true

[package]
authors = ["Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"]
description = "A non-cryprographic hash function using AES-NI for high performance"
documentation = "https://docs.rs/ahash"
edition = "2018"
keywords = ["hash", "hashmap", "aes", "aes-ni", "no-std"]
license = "MIT OR Apache-2.0"
name = "ahash"
readme = "README.md"
repository = "https://github.com/tkaitchuck/ahash"
version = "0.2.16"
[package.metadata.docs.rs]
features = ["std"]
rustc-args = ["-C", "target-feature=+aes"]
rustdoc-args = ["-C", "target-feature=+aes"]
[profile.bench]
codegen-units = 1
debug = false
debug-assertions = false
lto = "fat"
opt-level = 3

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = "fat"
opt-level = 3

[profile.test]
opt-level = 2