-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
25 lines (21 loc) · 921 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
[package]
name = "resource-status"
version = "0.1.0"
edition = "2021"
authors = ["nothinux <[email protected]>"]
description = "A tool that provide kubernetes cluster resource information, including cpu, memory, storage and number of pods."
homepage = "https://github.com/nothinux/kube-resource-status"
repository = "https://github.com/nothinux/kube-resource-status"
readme = "./README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kubectl-resource_status"
path = "src/main.rs"
[dependencies]
bpaf = { version = "0.7.10", features = ["derive"] }
k8s-openapi = { version = "0.17.0", features = ["v1_24"] }
kube = { version = "0.81.0", default-features = false, features = ["client", "rustls-tls"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
tabled = "0.10.0"
tokio = { version = "1.27.0", features = ["full"] }