crepuscularity-gpui 0.3.2

GPUI backend for Crepuscularity (view! macro re-exports) — UNSTABLE; in active development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// GPUI backend for Crepuscularity.
///
/// Re-exports the GPUI-oriented `view!` macro and prelude from the split backend crate.
pub use crepuscularity_macros::view;

pub mod prelude {
    pub use crepuscularity_macros::view;
    pub use gpui::prelude::*;
    pub use gpui::{
        black, div, px, relative, rems, rgb, white, App, AppContext, Application, Context, Entity,
        FontWeight, IntoElement, Render, SharedString, Window, WindowOptions,
    };
}