Skip to content

Commit 169fbe2

Browse files
committed
feat: add embedded-gui-codegen and embedded-gui-macros for KDL markup UI compilation
1 parent df19e22 commit 169fbe2

8 files changed

Lines changed: 1014 additions & 0 deletions

File tree

Cargo.lock

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
[workspace]
2+
members = [
3+
".",
4+
"crates/embedded-gui-codegen",
5+
"crates/embedded-gui-macros",
6+
]
7+
18
[package]
29
name = "embedded-gui"
310
version = "0.2.1"
@@ -76,6 +83,8 @@ embedded-3dgfx = "0.5.5"
7683
embedded-graphics = "0.8"
7784
embedded-graphics-framebuf = "0.3"
7885
embedded-graphics-simulator = "0.8"
86+
embedded-gui-codegen = { path = "crates/embedded-gui-codegen" }
87+
embedded-gui-macros = { path = "crates/embedded-gui-macros" }
7988
nalgebra = { version = "0.35", default-features = false, features = ["std"] }
8089

8190
[[bench]]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
name = "embedded-gui-codegen"
3+
version = "0.1.0"
4+
edition = "2024"
5+
authors = ["Gerzain Mata <leftger@gmail.com>"]
6+
license = "MIT OR Apache-2.0"
7+
description = "KDL markup parser and Rust code generator for embedded-gui"
8+
repository = "https://github.com/leftger/embedded-gui"
9+
10+
[dependencies]
11+
kdl = "4.6"
12+
thiserror = "2.0"
13+
14+
[dev-dependencies]

0 commit comments

Comments
 (0)