[package]
edition = "2021"
rust-version = "1.88"
name = "cellos-ctl"
version = "0.5.2"
authors = ["CellOS contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cellctl — kubectl-style CLI for CellOS execution cells and formations. Thin HTTP client over cellos-server with apply/get/describe/logs/events/webui."
homepage = "https://github.com/0ryant/CellOS"
documentation = "https://docs.rs/cellos-ctl"
readme = "README.md"
keywords = [
"cellos",
"cli",
"kubectl",
"formation",
"cells",
]
categories = [
"command-line-utilities",
"web-programming::http-client",
"virtualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/CellOS"
[lib]
name = "cellos_ctl"
path = "src/lib.rs"
[[bin]]
name = "cellctl"
path = "src/main.rs"
[[test]]
name = "exit_codes_on_unreachable"
path = "tests/exit_codes_on_unreachable.rs"
[[test]]
name = "formation_path_routing"
path = "tests/formation_path_routing.rs"
[[test]]
name = "formation_wire_alias"
path = "tests/formation_wire_alias.rs"
[[test]]
name = "formations_list_envelope"
path = "tests/formations_list_envelope.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.7"
features = [
"ws",
"macros",
]
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1"
[dependencies.cellos-core]
version = "0.7.1"
features = ["tracing-layer"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.futures-util]
version = "0.3"
features = [
"std",
"sink",
]
default-features = false
[dependencies.home]
version = "0.5"
[dependencies.http]
version = "1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"server",
"http1",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"server",
"server-auto",
"tokio",
]
[dependencies.indicatif]
version = "0.17"
[dependencies.opener]
version = "0.7"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"stream",
"json",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.subtle]
version = "2"
[dependencies.tabled]
version = "0.16"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"rt-multi-thread",
"macros",
"time",
"signal",
"io-std",
"io-util",
"net",
]
[dependencies.tokio-tungstenite]
version = "0.24"
features = [
"rustls-tls-webpki-roots",
"connect",
]
default-features = false
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
[dependencies.tower-http]
version = "0.5"
features = ["fs"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"rt-multi-thread",
"macros",
"time",
"net",
"io-util",
]
[dev-dependencies.tower]
version = "0.4"
features = ["util"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"