-
Notifications
You must be signed in to change notification settings - Fork 89
/
Cargo.toml
82 lines (79 loc) · 2.48 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
[package]
name = "rbw"
version = "1.12.1"
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.86"
argon2 = "0.5.3"
arrayvec = "0.7.4"
axum = "0.7.5"
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.11"
clap = { version = "4.5.11", features = ["wrap_help", "derive"] }
copypasta = "0.10.1"
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.5"
futures = "0.3.30"
futures-channel = "0.3.30"
futures-util = "0.3.30"
hkdf = "0.12.4"
hmac = { version = "0.12.1", features = ["std"] }
humantime = "2.1.0"
is-terminal = "0.4.12"
libc = "0.2.155"
log = "0.4.22"
open = "5.3.0"
pbkdf2 = "0.12.2"
percent-encoding = "2.3.1"
pkcs8 = "0.10.2"
rand = "0.8.5"
regex = "1.10.5"
region = "3.0.2"
reqwest = { version = "0.12.5", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] }
rmpv = "1.3.0"
rsa = "0.9.6"
rustix = { version = "0.38.34", features = ["termios", "procfs", "process", "pipe"] }
serde_json = "1.0.120"
serde_path_to_error = "0.1.16"
serde_repr = "0.1.19"
serde = { version = "1.0.204", features = ["derive"] }
sha1 = "0.10.6"
sha2 = "0.10.8"
tempfile = "3.10.1"
terminal_size = "0.3.0"
textwrap = "0.16.1"
thiserror = "1.0.63"
tokio-stream = { version = "0.1.15", features = ["net"] }
tokio-tungstenite = { version = "0.23", features = ["rustls-tls-native-roots", "url"] }
tokio = { version = "1.39.2", features = ["full"] }
totp-lite = "2.0.1"
url = "2.5.2"
urlencoding = "2.1.3"
uuid = { version = "1.10.0", features = ["v4"] }
zeroize = "1.8.1"
[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"],
]