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.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index 57e45df..f949cd9 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -2,7 +2,7 @@
2#![deny(unsafe_code)] 2#![deny(unsafe_code)]
3 3
4pub mod colors; 4pub mod colors;
5mod complex_shapes; 5// mod complex_shapes;
6pub mod core_shapes; 6pub mod core_shapes;
7mod rendering; 7mod rendering;
8mod runtime; 8mod runtime;
@@ -11,9 +11,9 @@ pub mod styles;
11pub mod text; 11pub mod text;
12pub mod types; 12pub mod types;
13 13
14pub use complex_shapes::{ 14// pub use complex_shapes::{
15 ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable, 15// ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable,
16}; 16// };
17pub use rendering::Renderer; 17pub use rendering::Renderer;
18pub use runtime::Runtime; 18pub use runtime::Runtime;
19pub use solving::{SolverContext, SolverModel}; 19pub use solving::{SolverContext, SolverModel};