-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (47 loc) · 1.33 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
[package]
name = "yage"
version = "0.5.0"
edition = "2021"
authors = ["Gaëtan Lehmann <gaetan.lehmann@gmail.com>"]
description = "A simple tool to manage encrypted secrets in YAML files with age encryption"
readme = "README.md"
repository = "https://github.com/glehmann/yage.git"
homepage = "https://github.com/glehmann/yage/"
documentation = "https://github.com/glehmann/yage/"
license = "MIT"
keywords = ["secret", "yaml", "encryption", "cli", "age"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["xtask"]
[dependencies]
age = "0.10.0"
base64 = "0.22.1"
clap = { version = "4.5.13", features = ["derive", "env", "wrap_help"] }
clap-verbosity-flag = "2.2.1"
clap_complete = "4.5.13"
flate2 = "1.0.34"
fs-mistrust = "0.8.1"
log = "0.4.22"
ocli = "0.1.1"
serde_yaml = "0.9.33"
shlex = "1.3.0"
strum = { version = "0.26.3", features = ["derive"] }
substring = "1.4.5"
tempfile = "3.12.0"
thiserror = "2.0.3"
treediff = { version = "5.0.0", features = ["with-serde-yaml"] }
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "3.1"
assert_fs = "1.1"
lipsum = "0.9"
escargot = "0.5"
predicates-tree = "1.0.11"
uuid = { version = "1.11.0", features = ["v4"] }
pretty_assertions = "1.4.1"
[profile.release]
strip = "symbols"
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"