lprs/Cargo.toml
Awiteb ba883e6b53
All checks were successful
Write changelog / write-changelog (push) Successful in 5s
Rust CI / Rust CI (push) Successful in 1m6s
chore(deps): Use rustls for reqwest
2024-05-03 22:01:08 +03:00

39 lines
1.1 KiB
TOML

[package]
name = "lprs"
version = "1.2.1"
edition = "2021"
license = "GPL-3.0-only"
authors = ["Awiteb <a@4rs.nl>"]
readme = "README.md"
description = "A local CLI password manager"
repository = "https://git.4rs.nl/awiteb/lprs"
rust-version = "1.74.0"
keywords = ["password", "manager", "CLI"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
directories = "5.0.1"
log = "0.4.21"
passwords = { version = "3.1.16", features = ["common-password"] }
pretty_env_logger = "0.5.0"
regex = "1.10.4"
serde = { version = "1.0.200", features = ["derive"] }
thiserror = "1.0.59"
reqwest = { version = "0.11.27", optional = true, default-features = false, features = ["rustls-tls"] }
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"
[features]
default = ["update-notify"]
update-notify = ["reqwest/blocking"]
reqwest = ["dep:reqwest"]
[profile.release]
strip = true # Automatically strip symbols from the binary.