22 lines
641 B
TOML
22 lines
641 B
TOML
[package]
|
|
name = "example_harmony_apply_deployment"
|
|
version.workspace = true
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "harmony"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
harmony = { path = "../../harmony" }
|
|
harmony_app = { path = "../../harmony_app" }
|
|
harmony_cli = { path = "../../harmony_cli" }
|
|
harmony-fleet-deploy = { path = "../../fleet/harmony-fleet-deploy" }
|
|
harmony-fleet-operator = { path = "../../fleet/harmony-fleet-operator" }
|
|
harmony-reconciler-contracts = { path = "../../harmony-reconciler-contracts" }
|
|
k8s-openapi = { workspace = true }
|
|
async-trait.workspace = true
|
|
tokio.workspace = true
|
|
anyhow.workspace = true
|