From 36c4cc1a415f420fd772750b83d168067e07f683 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 27 Mar 2023 16:59:55 -0400 Subject: [PATCH] remove these two unneeded extern crate lines i'm going to guess this was added early on automatically by clion and i just never caught it. they'd been here since the project was first committed to a git repo. oh well. --- ggdt/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/ggdt/src/lib.rs b/ggdt/src/lib.rs index 19a0c13..c860769 100644 --- a/ggdt/src/lib.rs +++ b/ggdt/src/lib.rs @@ -1,6 +1,3 @@ -extern crate core; -extern crate sdl2; - pub mod audio; pub mod base; pub mod entities;