waddling-errors-hash 0.7.3

Compact xxHash3-based error code hashing for network-efficient diagnostics in distributed systems
Documentation
[package]
name = "waddling-errors-hash"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Compact xxHash3-based error code hashing for network-efficient diagnostics in distributed systems"
keywords = ["hash", "xxhash", "diagnostics", "compact", "distributed"]
categories = ["development-tools::debugging", "no-std", "embedded"]

[dependencies]
# xxHash3 - WDP-specified hash algorithm
# Optimized for small inputs (error codes), ~30 GB/s throughput
# const_xxh3 enables compile-time hash computation
xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3", "const_xxh3"] }

[features]
default = ["std"]
std = []

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