mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
22 lines
691 B
TOML
22 lines
691 B
TOML
[package]
|
|
name = "tengri_tui"
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
description = "UI metaframework, Ratatui backend."
|
|
|
|
[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"
|
|
|
|
tengri_input = { path = "../input" }
|
|
tengri_output = { path = "../output" }
|
|
tengri_edn = { optional = true, path = "../edn" }
|
|
|
|
[features]
|
|
edn = [ "tengri_edn", "tengri_input/edn", "tengri_output/edn" ]
|