summaryrefslogtreecommitdiffstats
path: root/core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r--core/src/lib.rs19
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
4pub mod colors;
5mod complex_shapes;
6pub mod core_shapes;
7mod rendering;
8mod runtime;
9pub mod solving;
10pub mod styles;
11pub mod text;
12pub mod types;
13
14pub use complex_shapes::{
15 ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable,
16};
17pub use rendering::Renderer;
18pub use runtime::Runtime;
19pub use solving::{SolverContext, SolverModel};