From 3e70c36b8553849f798aef502c2a6483ee762ff7 Mon Sep 17 00:00:00 2001 From: Aram Peres Date: Sat, 20 Aug 2022 11:22:57 -0400 Subject: [PATCH] make proto module private for now --- rups/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rups/src/lib.rs b/rups/src/lib.rs index 2964e53..ea2e8a3 100644 --- a/rups/src/lib.rs +++ b/rups/src/lib.rs @@ -17,7 +17,7 @@ pub mod blocking; /// Reference: #[allow(dead_code)] #[macro_use] -pub mod proto; +pub(crate) mod proto; /// Async client implementation for NUT, using Tokio. #[cfg(feature = "async")] pub mod tokio;