Files
harmony/fleet/harmony-fleet-deploy/Cargo.toml
Jean-Gabriel Gill-Couture f2ecccb4ab
All checks were successful
Run Check Script / check (pull_request) Successful in 3m33s
refactor(fleet-deploy): rename harmony-fleet-release to harmony-fleet-publish
Deploy/publish wording is more intuitive than deploy/release.
2026-05-31 12:32:19 -04:00

50 lines
1.7 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: deploy the published operator chart (harmony apply).
# Built on harmony_cli like the rest of the workspace's *-deploy crates.
[[bin]]
name = "harmony-fleet-deploy"
path = "src/main.rs"
# `harmony-fleet-publish --from-tag <tag>` builds + publishes the
# operator's image + chart for a release.
[[bin]]
name = "harmony-fleet-publish"
path = "src/bin/harmony-fleet-publish.rs"
[dependencies]
harmony = { path = "../../harmony", features = ["podman"] }
harmony_cli = { path = "../../harmony_cli" }
harmony_config = { path = "../../harmony_config" }
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"
schemars = "0.8"
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 }