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

18
tengri/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "tengri"
edition = "2024"
version = "0.1.0"
description = "UI metaframework."
[dependencies]
tengri_edn = { optional = true, path = "../edn" }
tengri_input = { optional = true, path = "../input" }
tengri_output = { optional = true, path = "../output" }
tengri_tui = { optional = true, path = "../tui" }
[features]
default = [ "input", "output", "tui" ]
input = [ "tengri_input" ]
output = [ "tengri_output" ]
tui = [ "tengri_tui" ]
edn = [ "tengri_edn", "tengri_input/edn", "tengri_output/edn", "tengri_tui/edn" ]

3
tengri/README.md Normal file
View file

@ -0,0 +1,3 @@
# tengri
an interface metaframework. currently supports ratatui.

4
tengri/src/lib.rs Normal file
View file

@ -0,0 +1,4 @@
#[cfg(feature="output")] pub use ::tengri_output as output;
#[cfg(feature="input")] pub use ::tengri_input as input;
#[cfg(feature="edn")] pub use ::tengri_edn as edn;
#[cfg(feature="tui")] pub use ::tengri_tui as tui;