1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![warn(missing_docs)]

//! This crate contains the types and implementations that are shared between
//! all platforms that are capable of presenting a graphical user interface.

// Work around for rust-lang/rust#59368.
//! <style>
//! #macros, #macros ~ table { display: none !important; }
//! </style>

pub mod animation;
pub mod assets;
pub mod color;
pub mod components;
pub mod events;
pub mod font;
pub mod geometry;
pub mod handles;
pub mod hooks;
pub mod layout;
pub mod linalg;
pub mod physics;
pub mod prelude;
pub mod queries;
pub mod styles;

#[cfg(feature = "macros")]
pub mod macros;