twox-hash 2.0.0

A Rust implementation of the XXHash and XXH3 algorithms
Documentation
[dependencies.rand]
default-features = false
features = ["std", "std_rng"]
optional = true
version = "0.8.0"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0.0"

[dev-dependencies.serde_json]
version = "1.0.117"

[features]
alloc = []
default = ["random", "xxhash32", "xxhash64", "xxhash3_64", "std"]
random = ["dep:rand"]
serialize = ["dep:serde"]
std = ["alloc"]
xxhash32 = []
xxhash3_64 = []
xxhash64 = []

[lib]
name = "twox_hash"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(_internal_xxhash3_force_scalar)", "cfg(_internal_xxhash3_force_neon)", "cfg(_internal_xxhash3_force_sse2)", "cfg(_internal_xxhash3_force_avx2)"]
level = "warn"
priority = 0

[package]
authors = ["Jake Goulding <jake.goulding@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms"]
description = "A Rust implementation of the XXHash and XXH3 algorithms"
documentation = "https://docs.rs/twox-hash/"
edition = "2021"
keywords = ["hash", "hasher", "xxhash", "xxh3"]
license = "MIT"
name = "twox-hash"
readme = "README.md"
repository = "https://github.com/shepmaster/twox-hash"
rust-version = "1.81"
version = "2.0.0"

[package.metadata.docs.rs]
all-features = true