[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"
[[bench]]
harness = false
name = "bench_v2"
path = "benches/bench_v2.rs"
[[bench]]
harness = false
name = "rust_vs_c"
path = "benches/rust_vs_c.rs"
[build-dependencies.cc]
optional = true
version = "1.2.1"
[dependencies.hashbrown]
default-features = false
version = "0.15.2"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[features]
default = ["std"]
ffi = ["cc"]
std = []
[lib]
name = "chibihash"
path = "src/lib.rs"
[package]
authors = ["Ville Vesilehto <ville@vesilehto.fi>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["algorithms", "no-std"]
description = "Rust implementation of the ChibiHash hash function"
documentation = "https://docs.rs/chibihash"
edition = "2021"
keywords = ["hash", "chibihash", "fast-hash", "non-cryptographic"]
license = "MIT"
name = "chibihash"
readme = "README.md"
repository = "https://github.com/thevilledev/ChibiHash-rs"
version = "0.5.0"
[profile.bench]
codegen-units = 1
lto = "thin"
opt-level = 3
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
[[test]]
name = "integration"
path = "tests/integration.rs"