Fix unused variable warnings when avatars disabled

xmppftw@kl.netlib.re created

Change summary

xmpp/src/event.rs      | 4 +++-
xmpp/src/pubsub/mod.rs | 9 ++++++---
2 files changed, 9 insertions(+), 4 deletions(-)

Detailed changes

xmpp/src/event.rs 🔗

@@ -4,7 +4,9 @@
 // License, v. 2.0. If a copy of the MPL was not distributed with this
 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
-use tokio_xmpp::parsers::{bookmarks2, message::Body, roster::Item as RosterItem, BareJid, Jid};
+#[cfg(feature = "avatars")]
+use tokio_xmpp::parsers::Jid;
+use tokio_xmpp::parsers::{bookmarks2, message::Body, roster::Item as RosterItem, BareJid};
 
 use crate::{delay::StanzaTimeInfo, Error, Id, RoomNick};
 

xmpp/src/pubsub/mod.rs 🔗

@@ -22,9 +22,9 @@ use tokio_xmpp::{
 pub(crate) mod avatar;
 
 pub(crate) async fn handle_event<C: ServerConnector>(
-    from: &Jid,
+    #[cfg_attr(not(feature = "avatars"), allow(unused_variables))] from: &Jid,
     elem: Element,
-    agent: &mut Agent<C>,
+    #[cfg_attr(not(feature = "avatars"), allow(unused_variables))] agent: &mut Agent<C>,
 ) -> Vec<Event> {
     let mut events = Vec::new();
     let event = PubSubEvent::try_from(elem);
@@ -87,7 +87,10 @@ pub(crate) async fn handle_event<C: ServerConnector>(
     events
 }
 
-pub(crate) fn handle_iq_result(from: &Jid, elem: Element) -> impl IntoIterator<Item = Event> {
+pub(crate) fn handle_iq_result(
+    #[cfg_attr(not(feature = "avatars"), allow(unused_variables))] from: &Jid,
+    elem: Element,
+) -> impl IntoIterator<Item = Event> {
     let mut events = Vec::new();
     let pubsub = PubSub::try_from(elem).unwrap();
     trace!("PubSub: {:#?}", pubsub);