Files
harmony/examples/notes/Cargo.toml
Jean-Gabriel Gill-Couture eea006535b refactor: drop harmony_app landfill
Scores own deploy. harmony_app is identity, images, context, and
HarmonyApp→Scores. Authoring DX lives in dx. Compose/chart/Application
model and the Helm render test are gone.
2026-09-08 22:10:34 -04:00

32 lines
762 B
TOML

[package]
name = "example-notes"
edition = "2024"
version.workspace = true
readme.workspace = true
license.workspace = true
description = "ADR-029 notes app: frontend + backend + postgres, localdev vs cluster."
publish = false
[[bin]]
name = "notes"
path = "src/main.rs"
[[bin]]
name = "notes-api"
path = "src/bin/notes_api.rs"
[[bin]]
name = "notes-web"
path = "src/bin/notes_web.rs"
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
harmony = { path = "../../harmony" }
harmony_app = { path = "../../harmony_app" }
harmony_cli = { path = "../../harmony_cli" }
harmony_macros = { path = "../../harmony_macros" }
harmony_types = { path = "../../harmony_types" }
serde_json.workspace = true
tokio = { workspace = true, features = ["full"] }