[package]
edition = "2021"
name = "lm-provision-cli"
version = "0.11.0"
authors = ["Yutaka Nishimura <ytk.nishimura@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The lm-provision operator CLI: apply / check a profile against a pod, machine lifecycle (list / acquire / release / sweep), and the MCP server"
homepage = "https://github.com/ynishi/lm-provision"
documentation = "https://docs.rs/lm-provision-cli"
readme = "README.md"
keywords = [
"provisioning",
"gpu",
"runpod",
"llm",
"infrastructure",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/lm-provision"
[[bin]]
name = "lm-provision"
path = "src/main.rs"
[[test]]
name = "apply_target_e2e"
path = "tests/apply_target_e2e.rs"
[[test]]
name = "pod_verbs_e2e"
path = "tests/pod_verbs_e2e.rs"
[[test]]
name = "sweep_provider_e2e"
path = "tests/sweep_provider_e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.jiff]
version = "0.1"
[dependencies.lm-provision]
version = "0.11.0"
[dependencies.lm-provision-driver]
version = "0.11.0"
[dependencies.lm-provision-mcp]
version = "0.11.0"
[dependencies.rmcp]
version = "2"
features = [
"server",
"transport-io",
"macros",
]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"io-std",
"io-util",
"net",
"fs",
"time",
"signal",
]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]