From 6c37d7bcbbd09f7c6478384fc77f780a650ca15c Mon Sep 17 00:00:00 2001 From: Jonas Maier <> Date: Sat, 7 Mar 2026 10:07:42 +0100 Subject: make modules public again to suppress all the unused warnings --- src/main.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index 70e31bd..9fc903f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,16 +9,16 @@ use std::sync::{Arc, Mutex}; use std::thread::sleep; use std::time::Duration; -mod basedir; -mod completion; -mod cursor; -mod history; -mod linebuf; -mod panic; -mod parse; -mod raw; -mod reload; -mod run; +pub mod basedir; +pub mod completion; +pub mod cursor; +pub mod history; +pub mod linebuf; +pub mod panic; +pub mod parse; +pub mod raw; +pub mod reload; +pub mod run; use linebuf::LineBuf; use raw::*; -- cgit v1.2.3