| Crates.io | readable-hash |
| lib.rs | readable-hash |
| version | 0.1.0 |
| created_at | 2025-08-24 05:01:47.47878+00 |
| updated_at | 2025-08-24 05:01:47.47878+00 |
| description | Generate human-readable strings from SHA-256 hashes using syllable mapping |
| homepage | |
| repository | https://github.com/renatgalimov/readable-hash-rs |
| max_upload_size | |
| id | 1808084 |
| size | 40,139 |
Human-readable hashes for Rust.
Add the crate to your 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}");
}