| 1 | [package] |
| 2 | name = "codewhale-palette" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | repository.workspace = true |
| 8 | description = "Colour tokens, themes, and contrast math for Codewhale's terminal UI." |
| 9 | |
| 10 | [lints] |
| 11 | workspace = true |
| 12 | |
| 13 | [dependencies] |
| 14 | codewhale-config = { path = "../config", version = "0.10.0" } |
| 15 | ratatui = { version = "=0.30.2", features = ["unstable-rendered-line-info"] } |
| 16 | serde.workspace = true |
| 17 | serde_json = { workspace = true, features = ["preserve_order", "raw_value"] } |
| 18 | |
| 19 | [target.'cfg(unix)'.dependencies] |
| 20 | libc = { workspace = true } |
| 21 | |
| 22 | [dev-dependencies] |
| 23 | tempfile.workspace = true |
| 24 |