| 1 | [package] |
| 2 | name = "codewhale-command-contract" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | repository.workspace = true |
| 8 | description = "Prototype command capability and dispatch shapes for the staged TUI command extraction" |
| 9 | |
| 10 | [lints] |
| 11 | workspace = true |
| 12 | |
| 13 | [dependencies] |
| 14 | codewhale-core = { path = "../core", version = "0.10.0" } |
| 15 | # FEAT-025 export projections carry JSON tool payloads. The workspace already |
| 16 | # pins serde_json with `preserve_order` (crates/core and crates/tui), so this |
| 17 | # adds no new external dependency to the graph. |
| 18 | serde_json = { workspace = true, features = ["preserve_order"] } |
| 19 |