edn -> dsl

This commit is contained in:
🪞👃🪞 2025-03-14 23:44:13 +02:00
parent d30eda33d1
commit 877b344765
35 changed files with 197 additions and 225 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "tengri_tui"
edition = "2021"
edition = "2024"
version = "0.1.0"
description = "UI metaframework, Ratatui backend."
@ -16,7 +16,11 @@ quanta = "0.12.3"
tengri_input = { path = "../input" }
tengri_output = { path = "../output" }
tengri_edn = { optional = true, path = "../edn" }
tengri_dsl = { optional = true, path = "../dsl" }
[dev-dependencies]
tengri = { path = "../tengri", features = [ "dsl" ] }
tengri_dsl = { path = "../dsl" }
[features]
edn = [ "tengri_edn", "tengri_input/edn", "tengri_output/edn" ]
dsl = [ "tengri_dsl", "tengri_input/dsl", "tengri_output/dsl" ]