[package]
edition = "2024"
rust-version = "1.94.1"
name = "kobectl"
version = "0.41.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "kobe — CLI for the kobe cluster-pool operator: lease, inspect and manage instant CI/dev Kubernetes clusters"
homepage = "https://github.com/kunobi-ninja/kobe"
readme = false
keywords = [
"kubernetes",
"cli",
"k3s",
"ci",
"cluster",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/kunobi-ninja/kobe"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/kobe-{ target }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.aarch64-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.deb]
name = "kobe"
maintainer = "Kunobi Ninja <feedback@kunobi.ninja>"
copyright = "2026, Zondax AG"
depends = ""
extended-description = "Command-line client for the kobe cluster-pool operator: lease, inspect and manage instant CI/dev Kubernetes clusters."
section = "utils"
priority = "optional"
assets = [[
"target/release/kobe",
"usr/bin/kobe",
"755",
]]
[[bin]]
name = "kobe"
path = "src/main.rs"
[[test]]
name = "sandbox_cli"
path = "tests/sandbox_cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.dirs]
version = "6"
[dependencies.futures-util]
version = "0.3"
features = ["sink"]
default-features = false
[dependencies.kunobi-auth]
version = "0.10.0"
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls-no-provider",
"stream",
]
default-features = false
[dependencies.rustls]
version = "0.23"
features = ["ring"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.28"
features = [
"connect",
"rustls-tls-webpki-roots",
]
default-features = false
[dependencies.toml]
version = "0.8"
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["test-util"]
[target."cfg(unix)".dev-dependencies.libc]
version = "0.2"