[package] name = "tengri_tui" description = "UI metaframework, Ratatui backend." version = { workspace = true } edition = { workspace = true } [features] dsl = [ "tengri_dsl", "tengri_input/dsl", "tengri_output/dsl" ] [dependencies] tengri_core = { path = "../core" } tengri_input = { path = "../input" } tengri_output = { path = "../output" } tengri_dsl = { optional = true, path = "../dsl" } palette = { workspace = true } rand = { workspace = true } crossterm = { workspace = true } ratatui = { workspace = true } better-panic = { workspace = true } konst = { workspace = true } atomic_float = { workspace = true } quanta = { workspace = true } unicode-width = { workspace = true } [dev-dependencies] tengri = { path = "../tengri", features = [ "dsl" ] } tengri_dsl = { path = "../dsl" } tengri_proc = { path = "../proc" }