[package]
edition = "2021"
rust-version = "1.90"
name = "kimspect"
version = "0.0.45"
authors = ["Ali Abbas Jaffri <ali.abbasjaffri@live.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The missing utility in kubectl to help you inspect container images on your pods and nodes."
readme = "README.md"
keywords = [
"k8s",
"search",
"pattern",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/koithos/kimspect"
[lib]
name = "kimspect"
path = "src/lib.rs"
[[bin]]
name = "kimspect"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "k8s_tests"
path = "tests/k8s_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.colored]
version = "3.0"
[dependencies.k8s-openapi]
version = "0.27"
features = ["v1_31"]
[dependencies.kube]
version = "3.0"
features = [
"client",
"config",
"rustls-tls",
"ring",
"http-proxy",
]
default-features = false
[dependencies.prettytable-rs]
version = "0.10"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.44.2"
features = [
"macros",
"rt-multi-thread",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
default-features = false
[dev-dependencies.mockall]
version = "0.14"
[dev-dependencies.tokio-test]
version = "0.4"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true