Files
kiln-ui/Cargo.toml
T
randrews eabeaf1bf8 Extract kiln-ui: standalone game-agnostic ratatui widget toolkit
Widgets (CodeEditor, TextField, Dialog) plus clipboard/text internals,
extracted from the kiln workspace. No game-engine dependency.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-10 23:42:48 -05:00

14 lines
465 B
TOML

[package]
name = "kiln-ui"
version = "0.1.0"
edition = "2024"
[dependencies]
# text-only clipboard: drop the default `image-data` deps (image/tiff/jpeg), add Linux Wayland support
arboard = { version = "3", default-features = false, features = ["wayland-data-control"] }
# Pinned to 0.30.x: consumers (e.g. kiln-tui) exchange ratatui types with these widgets,
# so their ratatui must unify with this one.
ratatui = "0.30.1"
syntect = "5.3.0"
unicode-width = "0.2"