blob: f949cd95760675ee6d525a3f2470d2f41d19796b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#![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};
|