From b59ca1cbcbce4d7afed7b4c5a260d2812aaf4472 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Wed, 16 Jan 2019 15:22:51 +0100 Subject: [PATCH] lib: Reexport TryFrom and util::error::Error. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 7a291f7e..aea3e737 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,6 +26,8 @@ pub use minidom::Element; pub use jid::{Jid, JidParseError}; +pub use try_from::TryFrom; +pub use crate::util::error::Error; /// XML namespace definitions used through XMPP. pub mod ns;