mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
18 lines
586 B
TOML
18 lines
586 B
TOML
[package]
|
|
name = "tengri"
|
|
edition = "2024"
|
|
description = "UI metaframework."
|
|
version = { workspace = true }
|
|
|
|
[dependencies]
|
|
tengri_dsl = { optional = true, path = "../dsl" }
|
|
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" ]
|
|
dsl = [ "tengri_dsl", "tengri_input/dsl", "tengri_output/dsl", "tengri_tui/dsl" ]
|