16 lines
521 B
TOML
16 lines
521 B
TOML
[package]
|
|
name = "kiln-tui"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
kiln-core = { path = "../kiln-core" }
|
|
# 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"
|
|
ratatui = { workspace = true, features = ["unstable-rendered-line-info"] }
|
|
|
|
[dev-dependencies]
|
|
# Used only by rendering tests to build a Board from an inline map-file string.
|
|
toml = { version = "0.8", features = ["preserve_order"] }
|