Don’t export helpers or macros.

This commit is contained in:
Emmanuel Gil Peyrot 2018-05-28 17:32:27 +02:00
parent 7cbdf621ca
commit 6752bc7131

View file

@ -39,11 +39,12 @@ pub use minidom::Element;
pub mod error; pub mod error;
/// XML namespace definitions used through XMPP. /// XML namespace definitions used through XMPP.
pub mod ns; pub mod ns;
/// Various helpers. /// Various helpers.
pub mod helpers; mod helpers;
/// Helper macros to parse and serialise more easily. /// Helper macros to parse and serialise more easily.
#[macro_use] #[macro_use]
pub mod macros; mod macros;
#[cfg(test)] #[cfg(test)]
/// Namespace-aware comparison for tests /// Namespace-aware comparison for tests