mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
tek_ -> tengri_; reset to v0.1.0; add root reexporter package
This commit is contained in:
parent
70984b4992
commit
d30eda33d1
21 changed files with 101 additions and 75 deletions
18
tengri/Cargo.toml
Normal file
18
tengri/Cargo.toml
Normal 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
3
tengri/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# tengri
|
||||
|
||||
an interface metaframework. currently supports ratatui.
|
||||
4
tengri/src/lib.rs
Normal file
4
tengri/src/lib.rs
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue