Don’t export helpers or macros.

Emmanuel Gil Peyrot created

Change summary

src/lib.rs | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

Detailed changes

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