-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (18 loc) · 721 Bytes
/
Copy pathCargo.toml
File metadata and controls
20 lines (18 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# SPDX-License-Identifier: MPL-2.0
# (MPL-2.0 required for crates.io; MPL-2.0 preferred)
[package]
name = "coord-tui"
version = "0.1.0"
edition = "2021"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
description = "Rapid-setup TUI for BoJ local-coord-mcp (AI multi-instance coordination)"
license = "MPL-2.0"
# Architecture note: pure functions (state transitions, key dispatch) are
# deliberately isolated so SPARK/Ada formal modules can replace them later
# via Idris2-ABI + Zig-FFI (see boj-server/src/abi/).
[dependencies]
ratatui = "0.30"
crossterm = { version = "0.28", features = ["event-stream"] }
ureq = "3"
serde_json = "1"
clap = { version = "4", features = ["derive", "env"] }