[package] name = "tengri_tui" edition = "2024" description = "UI metaframework, Ratatui backend." version = { workspace = true } [dependencies] palette = { version = "0.7.6", features = [ "random" ] } rand = "0.8.5" crossterm = "0.28.1" ratatui = { version = "0.29.0", features = [ "unstable-widget-ref", "underline-color" ] } better-panic = "0.3.0" konst = { version = "0.3.16", features = [ "rust_1_83" ] } atomic_float = "1" quanta = "0.12.3" unicode-width = "0.2" tengri_input = { path = "../input" } tengri_output = { path = "../output" } tengri_dsl = { optional = true, path = "../dsl" } [dev-dependencies] tengri = { path = "../tengri", features = [ "dsl" ] } tengri_dsl = { path = "../dsl" } [features] dsl = [ "tengri_dsl", "tengri_input/dsl", "tengri_output/dsl" ]