[package]
edition = "2021"
rust-version = "1.85"
name = "hashkit"
version = "0.1.0"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified non-cryptographic hash functions for Santh performance crates"
homepage = "https://github.com/santhsecurity/hashkit"
documentation = "https://docs.rs/hashkit"
readme = "README.md"
keywords = [
"hash",
"fnv",
"splitmix",
"wyhash",
"performance",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT"
repository = "https://github.com/santhsecurity/hashkit"
[lib]
name = "hashkit"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.8.4"
[dev-dependencies.proptest]
version = "1.5"
[lints.clippy]
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"