1#![doc(html_logo_url = "https://nical.github.io/lyon-doc/lyon-logo.svg")]
2#![deny(bare_trait_objects)]
3#![allow(clippy::float_cmp, clippy::needless_range_loop)]
4#![allow(mismatched_lifetime_syntaxes)]
5#![no_std]
6
7extern crate alloc;
12
13#[cfg(any(test, feature = "std"))]
14extern crate std;
15
16pub extern crate lyon_path as path;
17
18pub mod aabb;
19pub mod area;
20pub mod fit;
21pub mod hatching;
22pub mod hit_test;
23pub mod length;
24pub mod measure;
25pub mod raycast;
26pub mod rect;
27pub mod rounded_polygon;
28pub mod walk;
29pub mod winding;
30
31pub use crate::path::geom;
32pub use crate::path::math;