33 lines
928 B
TOML
33 lines
928 B
TOML
|
[package]
|
||
|
name = "passrs"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
license = "GPL-3.0-only"
|
||
|
authors = ["Awiteb <awiteb@hotmail.com>"]
|
||
|
readme = "README.md"
|
||
|
description = "Local CLI password manager"
|
||
|
repository = "https://github.com/TheAwiteb/passrs"
|
||
|
rust-version = "1.70.0"
|
||
|
keywords = ["password", "manager", "CLI"]
|
||
|
categories = ["command-line-utilities"]
|
||
|
|
||
|
[dependencies]
|
||
|
base64 = "0.21.5"
|
||
|
clap = { version = "4.4.11", features = ["derive"] }
|
||
|
comfy-table = "7.1.0"
|
||
|
directories = "5.0.1"
|
||
|
log = "0.4.20"
|
||
|
passwords = { version = "3.1.16", features = ["common-password"] }
|
||
|
pretty_env_logger = "0.5.0"
|
||
|
regex = "1.10.2"
|
||
|
scanpw = "1.0.0"
|
||
|
serde = { version = "1.0.193", features = ["derive"] }
|
||
|
serde_json = "1.0.108"
|
||
|
sha256 = { version = "1.4.0", default-features = false }
|
||
|
soft-aes = "0.1.0"
|
||
|
thiserror = "1.0.51"
|
||
|
url = { version = "2.5.0", features = ["serde"] }
|
||
|
|
||
|
[profile.release]
|
||
|
strip = true # Automatically strip symbols from the binary.
|