From c132e19e7443febd5d3b1655d9b3da17c931d479 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 20 Oct 2019 22:09:58 +0200 Subject: [PATCH] Make a few modules private --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 2f057244..511ac124 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,17 +20,17 @@ extern crate wild; pub mod assets; pub mod controller; -pub mod decorations; -pub mod diff; +mod decorations; +mod diff; pub mod dirs; pub mod inputfile; pub mod line_range; pub mod output; -pub mod preprocessor; +mod preprocessor; pub mod printer; pub mod style; pub mod syntax_mapping; -pub mod terminal; +mod terminal; pub mod errors { error_chain! {