#![warn(clippy::all)] #![deny(unsafe_code)] pub mod colors; mod complex_shapes; pub mod core_shapes; mod rendering; mod runtime; pub mod solving; pub mod styles; pub mod text; pub mod types; pub use complex_shapes::{ ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable, }; pub use rendering::Renderer; pub use runtime::Runtime; pub use solving::{SolverContext, SolverModel};