From 6752bc7131449577bb6d8edf814398b748043ab1 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 28 May 2018 17:32:27 +0200 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20export=20helpers=20or=20macros.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index bd12e6ce..5fe91b18 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,11 +39,12 @@ pub use minidom::Element; pub mod error; /// XML namespace definitions used through XMPP. pub mod ns; + /// Various helpers. -pub mod helpers; +mod helpers; /// Helper macros to parse and serialise more easily. #[macro_use] -pub mod macros; +mod macros; #[cfg(test)] /// Namespace-aware comparison for tests