mecha10-cli 0.1.22

Mecha10 CLI tool
Documentation
[package]
description = "Mecha10 CLI tool"
edition.workspace = true
license.workspace = true
name = "mecha10-cli"
repository.workspace = true
version.workspace = true

[lib]
name = "mecha10_cli"
path = "src/lib.rs"

[[bin]]
name = "mecha10"
path = "src/main.rs"

[dependencies]
anyhow.workspace = true
async-trait = { workspace = true }
atty = "0.2"
blake3 = "1.5"
chrono = { version = "0.4", features = ["serde"] }
clap.workspace = true
console = "0.15"
crossterm = "0.28"
ctrlc = "3.4"
dialoguer = "0.11"
dirs = "5.0"
dotenvy = "0.15"
flate2 = "1.0"
futures-util = "0.3"
hf-hub = { version = "0.3", features = ["tokio"] }
indicatif = "0.17"
mecha10-core = { version = "0.1", path = "../core" }
mecha10-diagnostics = { version = "0.1", path = "../services/diagnostics" }
mecha10-runtime = { version = "0.1", path = "../runtime" }
open = "5"
ort = { version = "2.0.0-rc.10", features = ["download-binaries"] }
ratatui = "0.29"
redis = { workspace = true }
regex = "1.10"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream"] }
serde.workspace = true
serde_json.workspace = true
serde_yaml = "0.9"
tar = "0.4"
tempfile = "3"
tokio.workspace = true
toml = "0.8"
tracing.workspace = true
tracing-subscriber.workspace = true
which = "6.0"

# Bundled nodes (for standalone mode - no build required)
mecha10-nodes-behavior-executor = { version = "0.1", path = "../nodes/behavior-executor" }
mecha10-nodes-diagnostics = { version = "0.1", path = "../nodes/diagnostics" }
mecha10-nodes-image-classifier = { version = "0.1", path = "../nodes/image-classifier" }
mecha10-nodes-imu = { version = "0.1", path = "../nodes/imu" }
mecha10-nodes-listener = { version = "0.1", path = "../nodes/listener" }
mecha10-nodes-llm-command = { version = "0.1", path = "../nodes/llm-command" }
mecha10-nodes-motor = { version = "0.1", path = "../nodes/motor" }
mecha10-nodes-object-detector = { version = "0.1", path = "../nodes/object-detector" }
mecha10-nodes-simulation-bridge = { version = "0.1", path = "../nodes/simulation-bridge" }
mecha10-nodes-speaker = { version = "0.1", path = "../nodes/speaker" }
mecha10-nodes-teleop = { version = "0.1", path = "../nodes/teleop" }
mecha10-nodes-websocket-bridge = { version = "0.1", path = "../nodes/websocket-bridge" }

[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["signal", "process"] }

[dev-dependencies]
serial_test = "3"