Files
harmony/fleet/harmony-fleet-deploy/Cargo.toml
2026-05-20 13:41:40 -04:00

43 lines
1.5 KiB
TOML

[package]
name = "harmony-fleet-deploy"
edition = "2024"
version.workspace = true
readme.workspace = true
license.workspace = true
description = "Deploy-side Scores for the fleet stack: operator, agent, NATS, callout. Imports harmony for the Score-Topology-Interpret machinery; consumed by the production CLI, the e2e harness, and future control-plane tooling."
[lib]
path = "src/lib.rs"
# CLI entry point. `harmony-fleet-deploy <component>` picks a subcommand
# per fleet component plus an `all` composite. Built on harmony_cli the
# way the rest of the workspace's *-deploy crates are.
[[bin]]
name = "harmony-fleet-deploy"
path = "src/main.rs"
[dependencies]
harmony = { path = "../../harmony", features = ["podman"] }
harmony_cli = { path = "../../harmony_cli" }
harmony_types = { path = "../../harmony_types" }
harmony_macros = { path = "../../harmony_macros" }
harmony-fleet-auth = { path = "../harmony-fleet-auth" }
harmony-reconciler-contracts = { path = "../../harmony-reconciler-contracts" }
anyhow = { workspace = true }
async-trait = { workspace = true }
clap = { workspace = true }
k8s-openapi = { workspace = true }
kube = { workspace = true, features = ["runtime", "derive"] }
log = { workspace = true }
env_logger = { workspace = true }
non-blank-string-rs = "1"
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tempfile = "3"
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
toml = { workspace = true }
tracing = { workspace = true }