glossia-cli 0.4.0

Command-line interface for glossia: encode binary data into grammatical natural language
[package]
name = "glossia-cli"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Command-line interface for glossia: encode binary data into grammatical natural language"
repository = "https://github.com/asherp/glossia"
homepage = "https://github.com/asherp/glossia"
readme = "../README.md"
keywords = ["encoding", "bip39", "grammar", "codec", "cli"]
categories = ["command-line-utilities", "encoding"]

# Installs as the `glossia` command (`cargo install --path glossia-cli`)
# even though the package is named `glossia-cli`.
[[bin]]
name = "glossia"
path = "src/main.rs"

[dependencies]
# Both `path` and `version` so it builds from the workspace during development
# and resolves to the published crate when installed from crates.io. Publish the
# `glossia` library first, then this CLI.
glossia = { path = "..", version = "0.4.0", features = ["native"] }
rand = "0.8"