2023-12-23 20:59:25 +01:00
|
|
|
[package]
|
2023-12-26 18:53:07 +01:00
|
|
|
name = "lprs"
|
2024-01-07 20:17:11 +01:00
|
|
|
version = "1.2.1"
|
2023-12-23 20:59:25 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "GPL-3.0-only"
|
2024-03-15 04:06:49 +01:00
|
|
|
authors = ["Awiteb <a@4rs.nl>"]
|
2023-12-23 20:59:25 +01:00
|
|
|
readme = "README.md"
|
2023-12-29 06:53:05 +01:00
|
|
|
description = "A local CLI password manager"
|
2024-03-15 04:08:33 +01:00
|
|
|
repository = "https://git.4rs.nl/awiteb/lprs"
|
2023-12-23 20:59:25 +01:00
|
|
|
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"
|
|
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
|
|
serde_json = "1.0.108"
|
2023-12-25 15:05:23 +01:00
|
|
|
serde_with_macros = "3.4.0"
|
2023-12-23 20:59:25 +01:00
|
|
|
sha256 = { version = "1.4.0", default-features = false }
|
|
|
|
soft-aes = "0.1.0"
|
|
|
|
thiserror = "1.0.51"
|
|
|
|
url = { version = "2.5.0", features = ["serde"] }
|
2024-01-02 19:59:25 +01:00
|
|
|
reqwest = {version = "0.11.23", optional = true}
|
2024-04-24 18:06:00 +02:00
|
|
|
inquire = "0.7.4"
|
2024-01-02 19:59:25 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["update-notify"]
|
|
|
|
update-notify = ["reqwest/blocking"]
|
2023-12-23 20:59:25 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|