petname 2.0.2

Generate human readable random names. Usable as a library and from the command-line.
Documentation
[[bin]]
doc = false
name = "petname"
path = "src/main.rs"
required-features = ["clap", "default-rng", "default-words"]

[build-dependencies.anyhow]
version = "1"

[build-dependencies.proc-macro2]
version = "1"

[build-dependencies.quote]
version = "1"

[dependencies.clap]
features = ["cargo", "derive"]
optional = true
version = "4.4"

[dependencies.itertools]
default-features = false
version = ">=0.11"

[dependencies.rand]
default-features = false
version = "0.8"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.tempdir]
version = "0.3"

[features]
default = ["clap", "default-rng", "default-words"]
default-rng = ["rand/std", "rand/std_rng"]
default-words = []

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

[package]
authors = ["Gavin Panella <gavin@allenap.me>"]
categories = ["command-line-utilities", "no-std"]
description = "Generate human readable random names. Usable as a library and from the command-line."
edition = "2021"
keywords = ["pet", "name", "rand", "random", "generator"]
license = "Apache-2.0"
name = "petname"
readme = "README.md"
repository = "https://github.com/allenap/rust-petname"
version = "2.0.2"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[profile.release]
lto = true
opt-level = "z"
strip = true