From 5e9a2aa9440c1a10b1740b77eb64a3936245c8f2 Mon Sep 17 00:00:00 2001 From: Jonas Maier <> Date: Thu, 5 Mar 2026 08:55:21 +0100 Subject: make modules pub such that there are no complaints about unused things --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index edf5cb0..5854272 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,11 +5,11 @@ use std::os::unix::io::AsRawFd; use std::path::Path; use std::process::Command; -mod cursor; -mod linebuf; -mod parse; -mod raw; -mod panic; +pub mod cursor; +pub mod linebuf; +pub mod parse; +pub mod raw; +pub mod panic; use linebuf::LineBuf; use raw::*; -- cgit v1.2.3