Human-readable hashes for Rust.
Add the crate to your Cargo.toml:
Cargo.toml
readable-hash = "0.1"
Generate a hash:
use readable_hash::naive_readable_hash; fn main() { let hash = naive_readable_hash("hello"); println!("{hash}"); }