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