First pass on ruin_app, raw expanded example

This commit is contained in:
2026-03-21 18:24:59 -04:00
parent f59d519448
commit 2afbfe6b6f
4 changed files with 455 additions and 0 deletions

14
lib/ruin_app/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "ruin_app"
version = "0.1.0"
edition = "2024"
[dependencies]
ruin_reactivity = { path = "../reactivity" }
ruin_runtime = { package = "ruin-runtime", path = "../runtime" }
ruin_ui = { path = "../ui" }
ruin_ui_platform_wayland = { path = "../ui_platform_wayland" }
[[example]]
name = "00_bootstrap_and_counter_raw"
path = "example/00_bootstrap_and_counter_raw.rs"