Adds the harness-app composition root wiring config, providers, tools, and the engine loop together, plus the harness run -p "<prompt>" debug command in harness-tui::main for driving a one-shot prompt end-to-end from the CLI.
18 lines
295 B
TOML
18 lines
295 B
TOML
[package]
|
|
name = "harness-tui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "harness"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
harness-app = { workspace = true }
|
|
harness-core = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|