-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (44 loc) · 1.27 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
[workspace]
members = [
"sdk",
]
resolver = "2"
[package]
name = "lade"
version = "0.11.6-beta.1"
edition = "2021"
description = "Automatically load secrets from your preferred vault as environment variables, and clear them once your shell command is over."
license = "MPL-2.0"
repository = "https://github.com/zifeo/lade"
[dependencies]
anyhow = "1.0.91"
self_update = { version = "0.41.0", features = [
"archive-tar",
"archive-zip",
"compression-flate2",
"compression-zip-deflate",
"compression-zip-bzip2",
] }
serde = { version = "1.0.214", features = ["derive"] }
serde_yaml = "0.9.34"
clap = { version = "4.5.20", features = ["derive"] }
regex = "1.11.1"
lade-sdk = { path = "./sdk", version = "0.11.6-beta.1" }
tokio = { version = "1", features = ["full"] }
indexmap = { version = "2.6.0", features = ["serde"] }
clap-verbosity-flag = "3.0.1"
env_logger = "0.11.5"
openssl = { version = "0.10.68", features = ["vendored"] }
serde_json = "1.0.132"
futures = "0.3.31"
path-clean = "1.0.1"
directories = "5.0.1"
chrono = { version = "0.4.38", features = ["serde"] }
log = "0.4.22"
semver = "1.0.23"
sysinfo = "0.32.0"
textwrap = "0.16.1"
[target.'cfg(target_family = "unix")'.dependencies]
nix = { version = "0.29.0", features = ["signal"] }
[dev-dependencies]
assert_cmd = "2.0.16"