aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: aeb27b99ac804bc3960864ebfcb20fbca0fe111c (plain) (blame)
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
[package]
name = "rbw"
version = "0.1.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"

[dependencies]
aes = "*"
anyhow = "*"
arrayvec = "*"
base64 = "*"
block-modes = "*"
chbs = "*"
clap = "*"
daemonize = "*"
directories = "*"
env_logger = "*"
hkdf = "*"
hmac = "*"
log = "*"
nix = "*"
pbkdf2 = "*"
rand = "*"
region = "*"
reqwest = { version = "*", features = ["blocking", "json"] }
serde = { version = "*", features = ["derive"] }
serde_json = "*"
sha2 = "*"
snafu = "*"
tempfile = "*"
tokio = { version = "*", features = ["full"] }
uuid = { version = "*", features = ["v4"] }
zeroize = "*"