From 850af2f19a1c8febb87b3cb62fcad9a6d207da6a Mon Sep 17 00:00:00 2001 From: Asger Nyman Christiansen Date: Thu, 15 Feb 2024 11:28:36 +0100 Subject: [PATCH] Fix warnings --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 0efef02a..73f95fe3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,9 @@ pub mod renderer; pub use renderer::*; pub mod window; +#[allow(unused_imports)] pub use window::*; mod gui; +#[allow(unused_imports)] pub use gui::*;