-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (57 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
62 lines (57 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "vaultwarden-cli"
version = "0.5.1"
edition = "2024"
description = "CLI client for Vaultwarden - retrieve secrets for batch files and environment variables"
authors = ["Haydon Ryan", "AI coders and agents"]
license = "MIT"
[dependencies]
clap = { version = "4.6", features = ["derive", "env"] }
tokio = { version = "1.52", features = ["full"] }
reqwest = { version = "0.13.3", features = ["json", "form"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "2.0"
directories = "6.0"
keyring = "4"
keyring-core = "1"
regex = "1.12"
base64 = "0.22"
aes = "0.9"
cbc = "0.2"
hkdf = "=0.13.0"
sha2 = "=0.11.0"
hmac = "=0.13.0"
pbkdf2 = { version = "=0.13.0", features = ["sha2"] }
sha1 = "=0.11.0"
rpassword = "7.5"
rsa = { version = "0.10.0-rc.18", features = ["sha2"] }
[dev-dependencies]
tempfile = "3.27"
wiremock = "0.6"
tokio-test = "0.4"
rstest = "0.26"
rand = "0.10"
rand_core = "0.10"
assert_cmd = "2.2"
predicates = "3.1"
[package.metadata.release]
allow-branch = ["main", "master"]
sign-commit = false
sign-tag = false
push = true
tag = true
publish = false
tag-name = "v{{version}}"
tag-message = "release: v{{version}}"
pre-release-commit-message = "release: v{{version}}"
[lints.clippy]
dbg_macro = "deny"
get_unwrap = "deny"
let_underscore_must_use = "deny"
map_err_ignore = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unused_result_ok = "deny"