Awiteb
6521010a8b
All checks were successful
Write changelog / write-changelog (push) Successful in 3s
Rust CI / Rust CI (push) Successful in 3m14s
CD / build-assets (aarch64-unknown-linux-gnu) (push) Successful in 5m49s
CD / build-assets (aarch64-unknown-linux-musl) (push) Successful in 5m40s
CD / build-assets (x86_64-pc-windows-gnu) (push) Successful in 4m25s
CD / build-assets (x86_64-unknown-linux-gnu) (push) Successful in 3m53s
CD / build-assets (x86_64-unknown-linux-musl) (push) Successful in 3m57s
CD / release (push) Successful in 13s
91 lines
2.5 KiB
TOML
91 lines
2.5 KiB
TOML
[package]
|
|
name = "lprs"
|
|
version = "2.0.0-rc.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
authors = ["Awiteb <a@4rs.nl>"]
|
|
readme = "README.md"
|
|
description = "A local CLI vaults manager. For human and machine use"
|
|
repository = "https://git.4rs.nl/awiteb/lprs"
|
|
rust-version = "1.74.1"
|
|
keywords = ["password", "vault", "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.202", features = ["derive"] }
|
|
thiserror = "1.0.61"
|
|
reqwest = { version = "0.12.4", 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.117"
|
|
base64 = "0.22.1"
|
|
clap_complete = "4.5.2"
|
|
totp-lite = "2.0.1"
|
|
base32 = "0.5.0"
|
|
|
|
[features]
|
|
default = ["update-notify"]
|
|
update-notify = ["reqwest/blocking"]
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
missing_docs = "warn"
|
|
|
|
[lints.clippy]
|
|
# I know is huge, but I like to be explicit, it also provides
|
|
# a better DX for new contributors (Make it easier to understand the codebase).
|
|
# Also, this is a general linting configuration, it's not specific to this project.
|
|
wildcard_imports = "deny"
|
|
manual_let_else = "deny"
|
|
match_bool = "deny"
|
|
match_on_vec_items = "deny"
|
|
or_fun_call = "deny"
|
|
panic = "deny"
|
|
unwrap_used = "deny"
|
|
|
|
missing_assert_message = "warn"
|
|
missing_const_for_fn = "warn"
|
|
missing_errors_doc = "warn"
|
|
absolute_paths = "warn"
|
|
cast_lossless = "warn"
|
|
clone_on_ref_ptr = "warn"
|
|
cloned_instead_of_copied = "warn"
|
|
dbg_macro = "warn"
|
|
default_trait_access = "warn"
|
|
empty_enum_variants_with_brackets = "warn"
|
|
empty_line_after_doc_comments = "warn"
|
|
empty_line_after_outer_attr = "warn"
|
|
empty_structs_with_brackets = "warn"
|
|
enum_glob_use = "warn"
|
|
equatable_if_let = "warn"
|
|
explicit_iter_loop = "warn"
|
|
filetype_is_file = "warn"
|
|
filter_map_next = "warn"
|
|
flat_map_option = "warn"
|
|
float_cmp = "warn"
|
|
format_push_string = "warn"
|
|
future_not_send = "warn"
|
|
if_not_else = "warn"
|
|
if_then_some_else_none = "warn"
|
|
implicit_clone = "warn"
|
|
inconsistent_struct_constructor = "warn"
|
|
indexing_slicing = "warn"
|
|
iter_filter_is_ok = "warn"
|
|
iter_filter_is_some = "warn"
|
|
iter_not_returning_iterator = "warn"
|
|
manual_is_variant_and = "warn"
|
|
option_if_let_else = "warn"
|
|
option_option = "warn"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|