[package] name = "kopium" description = "kubernetes openapi unmangler" version = "0.21.1" edition = "2021" authors = [ "clux ", ] license = "Apache-2.0" readme = "./README.md" repository = "https://github.com/kube-rs/kopium" keywords = ["kubernetes", "openapi"] categories = ["command-line-utilities", "parsing"] [package.metadata.binstall] pkg-url = "{ repo }/releases/download/{ version }/kopium-{ target }{ archive-suffix }" bin-dir = "kopium-{ target }/{ bin }{ format }" [[bin]] doc = false name = "kopium" path = "src/main.rs" [lib] name = "kopium" path = "src/lib.rs" [dependencies] tokio = { version = "1.40.0", features = ["full"] } anyhow = "1.0.87" log = "0.4.22" env_logger = "0.11.5" serde_json = "1.0.127" clap = { version = "4.5", features = ["cargo", "derive"] } clap_complete = "4.5" quote = "1.0.37" serde = { version = "1.0.209", features = ["derive"] } serde_yaml = "0.9.34" heck = "0.5.0" syn = "2.0.77" libc = "0.2.158" regex = "1.10.6" [dependencies.k8s-openapi] version = "0.22.0" features = ["latest"] [dependencies.kube] version = "0.94.1" features = ["derive"] [dev-dependencies] schemars = "0.8.21" typed-builder = "0.20.0" [dev-dependencies.k8s-openapi] version = "0.22.0" features = ["latest", "schemars"]