tek_ -> tengri_; reset to v0.1.0; add root reexporter package

This commit is contained in:
🪞👃🪞 2025-03-14 23:39:31 +02:00
parent 70984b4992
commit d30eda33d1
21 changed files with 101 additions and 75 deletions

View file

@ -1,19 +1,22 @@
[package]
name = "tek_tui"
edition = "2021"
version = "0.2.0"
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" ] }
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" ] }
konst = { version = "0.3.16", features = [ "rust_1_83" ] }
atomic_float = "1"
quanta = "0.12.3"
quanta = "0.12.3"
tek_edn = { path = "../edn" }
tek_input = { path = "../input" }
tek_output = { path = "../output" }
#tek_time = { path = "../time" }
tengri_input = { path = "../input" }
tengri_output = { path = "../output" }
tengri_edn = { optional = true, path = "../edn" }
[features]
edn = [ "tengri_edn", "tengri_input/edn", "tengri_output/edn" ]