azul_css_parser/
lib.rs

1//! Provides a reference implementation of a style parser for Azul, capable of parsing CSS
2//! stylesheets into their respective `Css` counterparts.
3
4#![doc(
5    html_logo_url = "https://raw.githubusercontent.com/maps4print/azul/master/assets/images/azul_logo_full_min.svg.png",
6    html_favicon_url = "https://raw.githubusercontent.com/maps4print/azul/master/assets/images/favicon.ico",
7)]
8
9#![warn(unused_must_use)]
10#![deny(unreachable_patterns)]
11#![deny(missing_copy_implementations)]
12#![allow(unused_variables)]
13
14extern crate azul_css;
15extern crate azul_simplecss;
16
17#[macro_use]
18mod macros;
19
20mod css_parser;
21mod css;
22mod hot_reloader;
23
24pub use crate::css::*;
25pub use crate::css_parser::*;
26pub use crate::hot_reloader::*;