e65e9cc623
Motor gráfico Llimphi como workspace independiente: bucle Elm (input→update→view→layout→raster→present) sobre wgpu+vello+taffy+parley. Núcleo (hal/raster/layout/text/ui/theme/surface/motion/icons) + ~40 widgets + módulos, sin dependencias al resto del monorepo. cargo check --workspace pasa (64 crates). Puerta de entrada: cargo run -p llimphi-ui --example counter. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
29 lines
702 B
TOML
29 lines
702 B
TOML
[package]
|
|
name = "llimphi-ui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
llimphi-hal = { path = "../llimphi-hal" }
|
|
llimphi-layout = { path = "../llimphi-layout" }
|
|
llimphi-raster = { path = "../llimphi-raster" }
|
|
llimphi-text = { path = "../llimphi-text" }
|
|
# El compositor declarativo (winit-free): View, mount, paint, hit-test.
|
|
llimphi-compositor = { path = "../llimphi-compositor" }
|
|
pollster = { workspace = true }
|
|
|
|
[[example]]
|
|
name = "counter"
|
|
path = "examples/counter.rs"
|
|
|
|
[[example]]
|
|
name = "editor"
|
|
path = "examples/editor.rs"
|
|
|
|
[[example]]
|
|
name = "gpu_paint_demo"
|
|
path = "examples/gpu_paint_demo.rs"
|