diff options
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs new file mode 100644 index 0000000..57e45df --- /dev/null +++ b/core/src/lib.rs | |||
@@ -0,0 +1,19 @@ | |||
1 | #![warn(clippy::all)] | ||
2 | #![deny(unsafe_code)] | ||
3 | |||
4 | pub mod colors; | ||
5 | mod complex_shapes; | ||
6 | pub mod core_shapes; | ||
7 | mod rendering; | ||
8 | mod runtime; | ||
9 | pub mod solving; | ||
10 | pub mod styles; | ||
11 | pub mod text; | ||
12 | pub mod types; | ||
13 | |||
14 | pub use complex_shapes::{ | ||
15 | ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable, | ||
16 | }; | ||
17 | pub use rendering::Renderer; | ||
18 | pub use runtime::Runtime; | ||
19 | pub use solving::{SolverContext, SolverModel}; | ||