phraze 0.3.9

Random passphrase generator
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "phraze"
version = "0.3.9"
authors = ["sts10 <sschlinkert@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Random passphrase generator"
readme = "readme.markdown"
keywords = [
    "passphrase",
    "passwords",
]
categories = ["command-line-utilities"]
license = "MPL-2.0"
repository = "https://github.com/sts10/phraze"

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

[[bin]]
name = "phraze"
path = "src/main.rs"

[[test]]
name = "list_reading_tests"
path = "tests/list_reading_tests.rs"

[[test]]
name = "minimum_entropy_tests"
path = "tests/minimum_entropy_tests.rs"

[[bench]]
name = "generate_passphrase"
path = "benches/generate_passphrase.rs"
harness = false

[dependencies.clap]
version = "4.5.18"
features = ["derive"]

[dependencies.include-lines]
version = "1.1.2"

[dependencies.rand]
version = "0.10.1"

[dependencies.unicode-normalization]
version = "0.1.24"

[dev-dependencies.criterion]
version = "0.5.1"

[build-dependencies.clap]
version = "4.5.18"
features = ["derive"]

[build-dependencies.clap_complete]
version = "4.5.29"

[build-dependencies.clap_mangen]
version = "0.2.23"

[profile.dist]
lto = "thin"
inherits = "release"