[package]
edition = "2024"
name = "randpass"
version = "0.2.0"
authors = ["Brandon Lee"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI password generator with interactive TUI and cryptographic-grade RNG"
readme = "README.md"
keywords = [
"password",
"generator",
"security",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BrandonLeeDotDev/randpass"
[package.metadata.deb]
maintainer = "Brandon Lee"
copyright = "2024, Brandon Lee"
license-file = [
"LICENSE-MIT",
"0",
]
extended-description = "Generates secure passwords via interactive TUI or CLI arguments. Supports bulk generation, clipboard output, custom character sets, and hex mode."
section = "utils"
priority = "optional"
assets = [[
"target/release/randpass",
"/usr/bin/randpass",
"755",
]]
[[package.metadata.generate-rpm.assets]]
source = "target/release/randpass"
dest = "/usr/bin/randpass"
mode = "755"
[lib]
name = "randpass"
path = "src/lib.rs"
[[bin]]
name = "randpass"
path = "src/main.rs"
[[bin]]
name = "rng_test"
path = "rng/rng_test.rs"
[dependencies.copypasta]
version = "0.10.1"
[dependencies.crossterm]
version = "0.28"
[dependencies.libc]
version = "0.2"
[dependencies.zeroize]
version = "1.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1