-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (68 loc) · 1.74 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
77
78
79
80
81
82
[package]
name = "kubectl-ports"
edition = "2021"
version = "1.1.0"
authors = ["widnyana <[email protected]>"]
description = "A kubectl plugin to provide a list of exposed ports on kubernetes Pod resources"
homepage = "https://github.com/widnyana/kubectl-ports-rs"
readme = "README.md"
keywords = ["kubernetes", "kubernetes-ports", "krew-plugin"]
categories = ["development-tools", "visualization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/widnyana/kubectl-ports-rs"
exclude = [".github/*", ".vscode/*", "target", "bin"]
[dependencies]
anyhow = "1.0.89"
http = "1.1.0"
prettytable-rs = "0.10.0"
thiserror = "1.0.64"
tracing = "0.1.40"
[dependencies.clap]
version = "4.5.20"
features = ["cargo", "suggestions", "usage", "std", "error-context", "derive", "color", "wrap_help"]
optional = false
default-features = false
[dependencies.k8s-openapi]
version = "0.23.0"
features = ["v1_30"]
optional = false
[dependencies.kube]
version = "0.95.0"
features = ["client", "oauth", "gzip", "openssl-tls", "runtime", "derive", "http-proxy"]
optional = false
default-features = true
[dependencies.openssl]
version = "0.10.66"
features = ["vendored"]
optional = false
[dependencies.tokio]
version = "1.40.0"
features = ["full"]
optional = false
[dependencies.tracing-bunyan-formatter]
version = "0.3.9"
features = []
optional = false
[dependencies.tracing-subscriber]
version = "0.3.18"
features = ["env-filter"]
optional = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 8
panic = "abort"
strip = true
[profile.release.package]
[profile.dev]
opt-level = 1
incremental = true
overflow-checks = false
[profile.dev.package]
[[bin]]
path = "src/main.rs"
name = "kubectl-ports"
bench = false
doc = false
proc-macro = false
required-features = []