mirui 0.38.0

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Cross-cutting infrastructure shared by render, ui, app, and platform.
//!
//! `cache` is the generic LRU framework. `resource` builds on it for
//! token-keyed asset management. `reactive` is the Signal / Computed
//! / Effect runtime. `perf` records trace spans. `timer` declares
//! time-driven components.

pub mod cache;
pub mod i18n;
pub mod log;
pub mod perf;
#[cfg(feature = "persistence")]
pub mod persistence;
pub mod reactive;
pub mod resource;
pub mod storage;
pub mod time;
pub mod timer;