-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 888 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 888 Bytes
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
[package]
name = "vaultify"
version = "0.3.1"
authors = ["Patrick Jeremic <pjeremic@chorus.one>"]
license = "Apache-2.0"
edition = "2021"
description = "wraps any process in a set of environment variables fetched from vault"
readme = "README.md"
repository = "https://github.com/ChorusOne/vaultify"
rust-version = "1.79"
publish = false
[dependencies]
log = "0.4"
env_logger = "0.11"
thiserror = "2.0"
tokio = { version = "1.40", default-features = false, features = [
"macros",
"rt",
"fs",
] }
futures = "0.3"
# cli
clap = { version = "4", features = ["cargo", "derive", "env"] }
# accessing vault
serde_json = "1.0"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"charset",
"http2",
"macos-system-configuration",
"json",
] }
# process execution
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["process"] }