[package] name = "k8p" version = "0.4.10" edition = "2021" license = "MIT" authors = ["Ed Sweeney "] description = "A cli tool for inspecting containers in Kubernetes" keywords = ["kubernetes", "commandline", "k8s", "prometheus", "metrics"] documentation = "https://docs.rs/k8p" repository = "https://github.com/navicore/k8p" [[bin]] name = "k8p" path = "src/main.rs" [dependencies] uuid = { version = "1.5.0", features = [ "v4" ] } regex = "1.10" kube = { version = "0.86.0", features = ["runtime", "derive", "client", "ws"] } k8s-openapi = { version = "0.20.0", features = ["v1_26"] } clap = { version = "4.4", features = ["derive"] } tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread", "signal"] } csv = "1.3" reqwest = { version = "0.11", features = ["json"] } chrono = "0.4" futures = "0.3" tokio-util = "0.7" anyhow = "1.0.75" tracing = "0.1.40" tracing-subscriber = "0.3.17" sqlx = { version = "0.7", features = [ "sqlite", "runtime-tokio-native-tls" ] } clap_complete = "4.4.4"