From 3a0336bed080837c9c40880f8c3e9275f909f433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Thu, 26 Oct 2023 14:03:21 +0200 Subject: [PATCH] parsers: re-export the jid module entirely MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- parsers/ChangeLog | 5 +++++ parsers/src/lib.rs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/parsers/ChangeLog b/parsers/ChangeLog index e51f023f..cf1a1637 100644 --- a/parsers/ChangeLog +++ b/parsers/ChangeLog @@ -1,3 +1,8 @@ +Version xxx: +0000-00-00 Authors + * Improvements: + - Re-export the jid module entirely. + Version 0.20.0: 2023-08-17 Maxime “pep” Buquet , Emmanuel Gil Peyrot * New parsers/serialisers: diff --git a/parsers/src/lib.rs b/parsers/src/lib.rs index ffa4952e..99101fb9 100644 --- a/parsers/src/lib.rs +++ b/parsers/src/lib.rs @@ -24,7 +24,7 @@ #![warn(missing_docs)] pub use crate::util::error::Error; -pub use jid::{BareJid, Error as JidParseError, FullJid, Jid}; +pub use jid::{self, BareJid, Error as JidParseError, FullJid, Jid}; pub use minidom::Element; /// XML namespace definitions used through XMPP.