[[bench]]
name = "basic"
path = "benches/basic.rs"
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"
[[bench]]
name = "compiled"
path = "benches/compiled.rs"
[[bench]]
name = "hashmap"
path = "benches/hashmap.rs"
[[bench]]
name = "int"
path = "benches/int.rs"
[[bench]]
name = "object"
path = "benches/object.rs"
[[bench]]
harness = false
name = "quality"
path = "benches/quality.rs"
[[bench]]
name = "rng"
path = "benches/rng.rs"
[[bench]]
name = "vector"
path = "benches/vector.rs"
[dependencies.rand]
optional = true
version = "0.8.5"
[dependencies.rand_core]
default-features = false
optional = true
version = "0.6.4"
[dev-dependencies.ahash]
version = "0.8.11"
[dev-dependencies.const-random]
version = "0.1.18"
[dev-dependencies.criterion]
default-features = false
features = ["rayon", "cargo_bench_support"]
version = "0.5.1"
[dev-dependencies.fastrand]
version = "2.1.1"
[dev-dependencies.fxhash]
version = "0.2.1"
[dev-dependencies.itertools]
version = "0.13.0"
[dev-dependencies.lazy_static]
version = "1.5.0"
[dev-dependencies.metrohash]
version = "1.0.6"
[dev-dependencies.plotters]
default-features = false
features = ["chrono", "image", "svg_backend", "bitmap_backend", "bitmap_encoder", "line_series"]
version = "0.3.7"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.reqwest]
features = ["blocking"]
version = "0.12.7"
[dev-dependencies.seahash]
version = "4.1.0"
[dev-dependencies.serde]
version = "1.0.210"
[dev-dependencies.serde_cbor]
version = "0.11.2"
[dev-dependencies.t1ha]
version = "0.1.2"
[dev-dependencies.twox-hash]
version = "1.6.3"
[dev-dependencies.wyhash]
version = "0.5.0"
[[example]]
name = "charts"
path = "examples/charts.rs"
[[example]]
name = "cli"
path = "examples/cli.rs"
[features]
default = ["std"]
rand = ["dep:rand", "std"]
rng = ["dep:rand_core"]
std = []
unsafe = []
[lib]
name = "rapidhash"
path = "src/lib.rs"
[package]
authors = ["Liam Gray <gmail@liamg.me>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["algorithms", "no-std"]
description = "A rust port of rapidhash: an extremely fast, high quality, platform-independent hashing algorithm."
documentation = "https://docs.rs/rapidhash"
edition = "2021"
exclude = ["Cargo.lock", ".github", "fuzz", "docs"]
keywords = ["hash", "rapidhash"]
license = "MIT OR Apache-2.0"
name = "rapidhash"
readme = "README.md"
repository = "https://github.com/hoxxep/rapidhash"
rust-version = "1.77.0"
version = "1.0.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target.'cfg(all(any(target_arch = "arm", target_arch = "aarch64"), all(target_feature = "aes", target_feature = "neon")))'.dev-dependencies.gxhash]
version = "3.4.1"
[target.'cfg(all(any(target_arch = "x86", target_arch = "x86_64"), all(target_feature = "aes", target_feature = "sse2")))'.dev-dependencies.gxhash]
version = "3.4.1"