-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
46 lines (41 loc) · 1.18 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
[package]
name = "amber"
version = "0.1.5"
authors = ["Michael Snoyman <[email protected]>"]
edition = "2018"
description = "Manage secret values in-repo via public key cryptography"
readme = "README.md"
homepage = "https://github.com/fpco/amber"
repository = "https://github.com/fpco/amber"
license = "MIT"
keywords = ["continuous-integration", "secrets", "encryption"]
categories = ["command-line-utilities"]
[dependencies]
aho-corasick = "1.1.3"
anyhow = "1.0.86"
clap = { version = "4.5.7", features = ["derive", "env"] }
env_logger = "0.11.3"
fs-err = "2.11.0"
log = "0.4.21"
once_cell = "1.19.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_yaml = "0.9.34"
serde_json = "1.0.117"
crypto_box = { version = "0.9.1", features = ["seal", "rand_core", "getrandom"]}
hex = "0.4.3"
sha2 = "0.10.8"
base64 = "0.22.1"
[build-dependencies]
anyhow = "1.0.86"
vergen = { version = "8.3.1", default-features = false, features = ["gitoxide", "git"] }
[dev-dependencies]
assert_cmd = "2.0.14"
tempfile = "3.10.1"
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
[profile.release]
panic = "abort"
opt-level = "z"
lto = true