-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (49 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (49 loc) · 1.42 KB
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
[workspace]
resolver = "2"
members = [
"crates/secenv",
]
[workspace.package]
version = "0.0.0"
authors = ["cchexcode <alexanderh.weber@outlook.com>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/cchexcode/secenv"
repository = "https://github.com/cchexcode/secenv"
description = "Secure environments."
[workspace.dependencies]
tokio = { version = "1.47.1", features = [
"rt",
"rt-multi-thread",
"macros",
"process",
"io-util",
"time",
"sync",
"signal",
] }
clap = "4.5.46"
clap_complete = "4.5.57"
clap_mangen = "0.2.29"
clap-markdown = "0.1.5"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.145"
hocon = { version = "0.9", default-features = false, features = ["serde-support"] }
anyhow = "1.0.103"
path-clean = "1.0.1"
rpassword = "7.4"
base64 = "0.22"
tempfile = "3.21"
regex = "1.11"
semver = "1.0"
sequoia-openpgp = { version = "=2.1.0", default-features = false, features = [
"compression",
"crypto-openssl",
] }
# Feature-unifies with Sequoia's OpenSSL backend so installs build the crypto
# provider from vendored source instead of requiring system nettle/OpenSSL.
openssl-sys = { version = "0.9", features = ["vendored"] }
zeroize = "1.8"
argon2 = { version = "0.5", features = ["zeroize"] }
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc"] }
rand = { version = "0.8", default-features = false, features = ["getrandom"] }