Files
kiln/kiln-tui/Cargo.toml
T

16 lines
521 B
TOML
Raw Normal View History

[package]
name = "kiln-tui"
version = "0.1.0"
edition = "2024"
[dependencies]
kiln-core = { path = "../kiln-core" }
2026-07-11 00:11:35 -05:00
# Reusable, game-agnostic ratatui widgets, now a standalone repo (tracks the default branch).
kiln-ui = { git = "https://notpi.com/randrews/kiln-ui.git" }
color = "0.3.3"
2026-06-17 18:25:09 -05:00
ratatui = { workspace = true, features = ["unstable-rendered-line-info"] }
2026-07-11 12:40:35 -05:00
[dev-dependencies]
# Used only by rendering tests to build a Board from an inline map-file string.
toml = { version = "0.8", features = ["preserve_order"] }