Files
harmony/harmony_app/Cargo.toml
Jean-Gabriel Gill-Couture b2c3c01081 refactor(app): promote compose deploy stack into harmony_app; example is just main.rs
Move the compose importer, chart generator, ComposeAppScore, publish bricks,
and the ComposeDeploy builder out of the example into harmony_app (they needed
harmony_app::Profile/Capability, so harmony core would be circular — harmony_app
is the home, per decision A). The example is now a 23-line main.rs + app/ +
contexts; folk imports from harmony_app too. Tests + the helm lint/template
integration test moved along. 29 lib + 1 integration test green.
2026-06-22 18:17:39 -04:00

26 lines
634 B
TOML

[package]
name = "harmony_app"
edition = "2024"
version.workspace = true
readme.workspace = true
license.workspace = true
[dependencies]
harmony = { path = "../harmony" }
harmony-k8s = { path = "../harmony-k8s" }
harmony_config = { path = "../harmony_config" }
harmony_types = { path = "../harmony_types" }
async-trait.workspace = true
anyhow.workspace = true
tokio.workspace = true
serde = { workspace = true }
serde_yaml = { workspace = true }
schemars = "0.8"
tempfile.workspace = true
toml.workspace = true
log.workspace = true
k8s-openapi.workspace = true
thiserror.workspace = true
docker-compose-types = "0.24"
fqdn = "0.5.2"