[package]
edition = "2024"
name = "humanhash"
version = "0.1.0"
build = false
include = [
"src/**/*",
"dicts/bip39.txt",
"README.md",
"LICENSE",
"NOTICE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, lossless, BIP39-encoded human-readable representations of digests. Same hash always renders the same dash-separated word string."
homepage = "https://github.com/deepgram/humanhash"
documentation = "https://docs.rs/humanhash"
readme = "README.md"
keywords = [
"humanhash",
"hash",
"release",
"bip39",
"deterministic",
]
categories = [
"encoding",
"command-line-utilities",
]
license = "Unlicense"
repository = "https://github.com/deepgram/humanhash"
[lib]
name = "humanhash"
path = "src/lib.rs"
[[bin]]
name = "humanhash"
path = "src/bin/humanhash.rs"
[dependencies]