| 1 | #![doc(html_logo_url = "https://nical.github.io/lyon-doc/lyon-logo.svg")] |
|---|---|
| 2 | #![deny(bare_trait_objects)] |
| 3 | #![allow(dead_code)] |
| 4 | #![allow(unused_variables)] |
| 5 | |
| 6 | extern crate lyon_path as path; |
| 7 | |
| 8 | pub use path::geom::euclid; |
| 9 | pub use path::math; |
| 10 | |
| 11 | pub mod debugging; |
| 12 | pub mod parser; |
| 13 | pub mod rust_logo; |
| 14 |
