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"
|
2024-05-03 06:37:04 +02:00
|
|
|
rust-version = "1.74.0"
|
2023-12-23 20:59:25 +01:00
|
|
|
keywords = ["password", "manager", "CLI"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-02 20:28:51 +02:00
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2023-12-23 20:59:25 +01:00
|
|
|
directories = "5.0.1"
|
2024-05-02 20:28:51 +02:00
|
|
|
log = "0.4.21"
|
2023-12-23 20:59:25 +01:00
|
|
|
passwords = { version = "3.1.16", features = ["common-password"] }
|
|
|
|
pretty_env_logger = "0.5.0"
|
2024-05-02 20:28:51 +02:00
|
|
|
regex = "1.10.4"
|
|
|
|
serde = { version = "1.0.200", features = ["derive"] }
|
|
|
|
thiserror = "1.0.59"
|
2024-05-03 21:01:08 +02:00
|
|
|
reqwest = { version = "0.11.27", optional = true, default-features = false, features = ["rustls-tls"] }
|
2024-05-02 20:28:51 +02:00
|
|
|
inquire = "0.7.5"
|
|
|
|
bincode = "1.3.3"
|
|
|
|
rand = "0.8.5"
|
|
|
|
cbc = { version = "0.1.2", features = ["alloc", "std"] }
|
|
|
|
aes = "0.8.4"
|
|
|
|
sha2 = "0.10.8"
|
|
|
|
serde_json = "1.0.116"
|
|
|
|
base64 = "0.22.1"
|
2024-01-02 19:59:25 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["update-notify"]
|
|
|
|
update-notify = ["reqwest/blocking"]
|
2024-05-03 21:01:08 +02:00
|
|
|
reqwest = ["dep:reqwest"]
|
2023-12-23 20:59:25 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|