diff options
author | Minijackson <minijackson@riseup.net> | 2022-12-22 12:19:59 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2022-12-22 12:19:59 +0100 |
commit | 92a02c34628343153b33602eae00cef46e28d191 (patch) | |
tree | 8622ec528d24e456be22d984d93aa9bcafc97399 /core/src/lib.rs | |
download | diaphragm-92a02c34628343153b33602eae00cef46e28d191.tar.gz diaphragm-92a02c34628343153b33602eae00cef46e28d191.zip |
WIP
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}; | ||