-
Notifications
You must be signed in to change notification settings - Fork 95
/
Cargo.toml
107 lines (101 loc) · 3.19 KB
/
Cargo.toml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[package]
name = "rbw"
version = "1.13.2"
authors = ["Jesse Luehrs <[email protected]>"]
edition = "2021"
description = "Unofficial Bitwarden CLI"
repository = "https://git.tozt.net/rbw"
readme = "README.md"
keywords = ["bitwarden"]
categories = ["command-line-utilities", "cryptography"]
license = "MIT"
include = ["src/**/*", "bin/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[dependencies]
aes = "0.8.4"
anyhow = "1.0.95"
argon2 = "0.5.3"
arrayvec = "0.7.6"
axum = "0.7.9"
base32 = "0.5.1"
base64 = "0.22.1"
block-padding = "0.3.3"
cbc = { version = "0.1.2", features = ["alloc", "std"] }
clap_complete = "4.5.40"
clap = { version = "4.5.23", features = ["wrap_help", "derive"] }
daemonize = "0.5.0"
# TODO: directories 5.0.1 uses MPL code, which isn't license-compatible
# we should switch to something else at some point
directories = "=5.0.0"
env_logger = "0.11.6"
futures = "0.3.31"
futures-channel = "0.3.31"
futures-util = "0.3.31"
hkdf = "0.12.4"
hmac = { version = "0.12.1", features = ["std"] }
humantime = "2.1.0"
is-terminal = "0.4.13"
libc = "0.2.169"
log = "0.4.22"
open = "5.3.1"
pbkdf2 = "0.12.2"
percent-encoding = "2.3.1"
pkcs8 = "0.10.2"
rand = "0.8.5"
regex = "1.11.1"
region = "3.0.2"
reqwest = { version = "0.12.9", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] }
rmpv = "1.3.0"
rsa = "0.9.7"
rustix = { version = "0.38.42", features = ["termios", "procfs", "process", "pipe"] }
serde_json = "1.0.134"
serde_path_to_error = "0.1.16"
serde_repr = "0.1.19"
serde = { version = "1.0.216", features = ["derive"] }
sha1 = "0.10.6"
sha2 = "0.10.8"
tempfile = "3.14.0"
terminal_size = "0.4.1"
textwrap = "0.16.1"
thiserror = "1.0.63"
tokio-stream = { version = "0.1.17", features = ["net"] }
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-native-roots", "url"] }
tokio = { version = "1.42.0", features = ["full"] }
totp-lite = "2.0.1"
url = "2.5.4"
urlencoding = "2.1.3"
uuid = { version = "1.11.0", features = ["v4"] }
zeroize = "1.8.1"
arboard = { version = "3.4", default-features = false, features = ["wayland-data-control"], optional = true }
[features]
default = ["clipboard"]
clipboard = ["arboard"]
[lints.clippy]
cargo = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
as_conversions = "warn"
get_unwrap = "warn"
cognitive_complexity = "allow"
missing_const_for_fn = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
multiple_crate_versions = "allow"
large_enum_variant = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
significant_drop_tightening = "allow"
[package.metadata.deb]
depends = "pinentry"
license-file = ["LICENSE"]
assets = [
["target/release/rbw", "usr/bin/", "755"],
["target/release/rbw-agent", "usr/bin/", "755"],
["target/release/completion/bash", "usr/share/bash-completion/completions/rbw", "644"],
["target/release/completion/zsh", "usr/share/zsh/vendor-completions/_rbw", "644"],
["target/release/completion/fish", "usr/share/fish/completions/rbw.fish", "644"],
["README.md", "usr/share/doc/rbw/README", "644"],
]