Files
kiln/kiln-ui/Cargo.toml
T

15 lines
478 B
TOML
Raw Normal View History

2026-06-17 18:25:09 -05:00
[package]
name = "kiln-ui"
version = "0.1.0"
edition = "2024"
[dependencies]
2026-06-20 15:27:09 -05:00
# First kiln-core dependency in kiln-ui: the glyph picker needs `Glyph`/`Rgba8`.
kiln-core = { path = "../kiln-core" }
color = "0.3.3"
2026-06-18 11:40:06 -05:00
# 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"] }
2026-06-17 18:25:09 -05:00
ratatui = { workspace = true }
2026-06-18 11:40:06 -05:00
syntect = "5.3.0"
unicode-width = "0.2"