azul_layout/
lib.rs

1#![doc(
2    html_logo_url = "https://raw.githubusercontent.com/maps4print/azul/master/assets/images/azul_logo_full_min.svg.png",
3    html_favicon_url = "https://raw.githubusercontent.com/maps4print/azul/master/assets/images/favicon.ico"
4)]
5#![allow(warnings)]
6
7// #![no_std]
8
9#[macro_use]
10extern crate alloc;
11extern crate core;
12
13#[cfg(feature = "font_loading")]
14pub mod font;
15pub mod image;
16pub mod solver;
17#[cfg(feature = "text_layout")]
18pub mod text;
19#[cfg(feature = "xml")]
20pub mod xml;
21
22#[cfg(feature = "text_layout")]
23pub use solver::{callback_info_shape_text, do_the_layout, do_the_relayout};
24#[cfg(feature = "text_layout")]
25pub use text::parse_font_fn;