[package]
name = "psh-cli"
version = "0.5.1"
authors = ["Alexander Uvizhev"]
edition = "2021"
license = "MIT"
repository = "https://github.com/uvizhe/psh"
description = "Password generator/manager that derives deterministic passwords from a set of inputs"
keywords = ["password", "password-generator", "password-manager", "security", "cli"]
[dependencies]
psh = { version = "0.5.0", path = "../" }
psh-db = { version = "0.2.0", path = "../db" }
clap = { version = "3.2.20", features = ["derive"] }
clipboard = { version = "0.5.0" }
console = { version = "0.15.2" }
ctrlc = { version = "3.2.4" }
dialoguer = { version = "0.10.2", features = ["zeroize"] }
terminal_size = "0.3.0"
[[bin]]
name = "psh"
path = "src/main.rs"