-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 918 Bytes
/
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
[package]
name = "kubectl-config-doctor"
authors = ["Guilherme Oenning <[email protected]>"]
description = "Kubectl plugin to validate kubeconfigs"
version = "0.3.5"
edition = "2021"
keywords = ["kubectl"]
license = "MIT"
homepage = "https://aptakube.com"
repository = "https://github.com/aptakube/kubectl-config-doctor"
readme = "README.md"
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/src/**",
]
[[bin]]
name = "kubectl-config-doctor"
path = "src/main.rs"
[dependencies]
aws-lc-rs = "1.9.0"
colored = "2.1.0"
home = "0.5.9"
http = "1.1.0"
k8s-openapi = { version = "0.22.0", features = ["latest"] }
kube = { version = "0.94.1", features = ["config", "client", "rustls-tls", "aws-lc-rs", "socks5", "http-proxy", "oidc"] }
secrecy = "0.8.0"
tokio = { version = "1.40.0", features = ["full"] }
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = 3
strip = true