22 lines
564 B
TOML
22 lines
564 B
TOML
[package]
|
|
name = "homelab-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
askama = "0.15.1"
|
|
chrono = "0.4.43"
|
|
clap = { version = "4.5.54", features = ["derive"] }
|
|
dialoguer = "0.12.0"
|
|
futures = "0.3.31"
|
|
indicatif = "0.18.3"
|
|
k8s-openapi = { version = "0.27.0", features = ["latest", "schemars", "v1_35"] }
|
|
kube = { version = "3.0.0", features = ["runtime", "derive"] }
|
|
schemars = "1.2.0"
|
|
serde_json = "1.0.149"
|
|
serde_yaml = "0.9.34"
|
|
thiserror = "2.0.18"
|
|
thiserror-ext = "0.3.0"
|
|
tokio = { version = "1.49.0", features = ["macros", "rt"] }
|