[package]
edition = "2024"
name = "axhash-core"
version = "0.9.0"
authors = ["Bagus Dwi Harianto robbymangkualam2000@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-agnostic AxHash core for Rust with no_std compatibility."
readme = "README.md"
keywords = [
"hash",
"hashing",
"performance",
"no_std",
"non-cryptographic",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT"
repository = "https://github.com/robby031/axhash"
resolver = "2"
[features]
default = ["std"]
std = []
wasm = []
[lib]
name = "axhash_core"
path = "src/lib.rs"
[dependencies.getrandom]
version = "0.2"
default-features = false
[dev-dependencies]
[lints.clippy]
inline_always = "allow"
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"