-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (73 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "vault-mgmt"
version = "0.1.4"
edition = "2021"
description = "Manage your vault installation in Kubernetes (upgrades, unseal, step-down, ...)."
license = "MIT"
homepage = "https://github.com/nimbolus/vault-mgmt"
repository = "https://github.com/nimbolus/vault-mgmt"
readme = "README.md"
keywords = ["vault", "kubernetes", "upgrade"]
categories = ["command-line-utilities"]
[lib]
name = "vault_mgmt_lib"
path = "src/lib.rs"
[[bin]]
name = "vault-mgmt"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.15", features = ["derive", "wrap_help"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }
tokio = { version = "1.39.2", features = ["full"] }
tokio-util = "0.7.11"
tokio-rustls = "0.26.0"
hyper = "1.4.1"
hyper-rustls = "0.27.2"
tower = "0.4.13"
futures-util = "0.3.30"
kube = { version = "0.93.1", default-features = false, features = [
"client",
"config",
"runtime",
"rustls-tls",
"derive",
"ws",
] }
k8s-openapi = { version = "0.22.0", features = ["v1_24"] }
serde_json = "1.0.122"
secrecy = { version = "0.8.0", features = ["serde"] }
prettytable = "0.10.0"
serde_yaml = "0.9.34"
which = "6.0.2"
rand = "0.8.5"
serde = "1.0.206"
tower-test = "0.4.0"
http = "1.1.0"
async-trait = "0.1.81"
wiremock = "0.6.1"
clap_complete = "4.5.14"
self_update = { version = "0.41.0", default-features = false, features = [
"rustls",
"compression-flate2",
"archive-tar",
] }
tokio-retry = "0.3.0"
rustls = { version = "0.23.12", default-features = false, features = [
"log",
"logging",
"ring",
"std",
"tls12",
] }
http-body-util = "0.1.2"
hyper-util = { version = "0.1.7", features = [
"client-legacy",
"http1",
"tokio",
] }
rustls-native-certs = "0.7.1"