-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
54 lines (52 loc) · 1.22 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
keywords = ["sops", "encryption", "config"]
authors = ["Gabriel Hansson <[email protected]>"]
repository = "https://github.com/gibbz00/rops"
license = "MPL-2.0"
exclude = ["/.github"]
edition = "2021"
readme = "README.md"
version = "0.1.4"
[workspace.dependencies]
aes-gcm = { version = "0.10", features = ["std"] }
age = "0.10"
anyhow = "1"
aws-arn = "0.3"
aws-sdk-kms = { version = "1.46", features = ["behavior-version-latest"] }
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
console = "0.15"
ctrlc = "3"
derive_more = "0.99"
directories = "5"
generic-array = "0.14"
hex = "0.4"
impl-tools = "0.10"
indexmap = "2"
indoc = "2"
once_cell = "1"
pretty_assertions = "1"
rand = "0.8"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_regex = "1"
serde_with = "3"
serde_yaml = "0.9"
serde_json = "1"
serial_test = { version = "3", default-features = false }
sha2 = "0.10"
shlex = "1.2.0"
strum = { version = "0.26", features = ["derive"] }
tempfile = "3"
test-binary = "3"
textwrap = "0.16"
thiserror = "2"
tokio = "1"
toml = "0.8"
walkdir = "2"
which = "6"
zeroize = { version = "1.8" }