[package]
edition = "2024"
rust-version = "1.85"
name = "passid"
version = "2.0.0"
authors = ["Vikram Sharma"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, secure, secret-safe CLI for passwords + modern monotonic IDs (UUIDv7, ULID, KSUID, TypeID, NanoID)"
readme = "README.md"
keywords = [
"password",
"cli",
"unique-id",
"sortable-id",
"devops",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT"
repository = "https://github.com/sharma-vikram/passid"
[lib]
name = "passid"
path = "src/lib.rs"
[[bin]]
name = "passid"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.rand]
version = "0.10.0"
features = ["std"]
[dependencies.thiserror]
version = "2"
[dependencies.zeroize]
version = "1.8.2"
[lints.clippy]
multiple_crate_versions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
overflow-checks = true
strip = true