[package]
edition = "2024"
rust-version = "1.85"
name = "hashcrew"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, portable hashing for non-cryptographic use"
homepage = "https://github.com/fast/hashcrew"
documentation = "https://docs.rs/hashcrew"
readme = "README.md"
keywords = [
"hash",
"xxhash",
"cityhash",
"murmurhash",
"fnv",
]
categories = [
"algorithms",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/fast/hashcrew"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
cityhash = []
default = []
fnv = []
md5 = []
murmur = []
std = []
xxhash = []
[lib]
name = "hashcrew"
path = "src/lib.rs"
[lints.clippy]
dbg_macro = "deny"
missing_safety_doc = "deny"
undocumented_unsafe_blocks = "deny"
[lints.rust]
missing_debug_implementations = "deny"
unknown_lints = "deny"
unsafe_op_in_unsafe_fn = "forbid"
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1