common: Move panic handler out of libcommon.
[gps-watch.git] / src / common / lib.rs
index 2f7d8944c64935c531bca68061e228f9482d810c..69cd7be4f8110e80219421339682585e92ed4a85 100644 (file)
@@ -40,12 +40,6 @@ pub mod buffer;
 pub mod usb_serial;
 pub mod screen;
 pub mod display;
-
-use core::panic::PanicInfo;
-
-#[inline(never)]
-#[panic_handler]
-fn panic(_info: &PanicInfo) -> ! {
-    loop {
-    }
-}
+pub mod gps;
+pub mod fmt;
+pub mod time;