xmpp: Use tokio-xmpp’s reexports of jid and minidom
This commit is contained in:
parent
e9b226e1ae
commit
5fc12c45b5
19 changed files with 35 additions and 21 deletions
|
|
@ -6,13 +6,14 @@
|
|||
|
||||
use tokio_xmpp::connect::ServerConnector;
|
||||
use tokio_xmpp::{
|
||||
jid::Jid,
|
||||
minidom::Element,
|
||||
parsers::{
|
||||
disco::DiscoInfoQuery,
|
||||
iq::Iq,
|
||||
ns,
|
||||
stanza_error::{DefinedCondition, ErrorType, StanzaError},
|
||||
},
|
||||
Element, Jid,
|
||||
};
|
||||
|
||||
use crate::{Agent, Event};
|
||||
|
|
|
|||
|
|
@ -6,8 +6,9 @@
|
|||
|
||||
use tokio_xmpp::connect::ServerConnector;
|
||||
use tokio_xmpp::{
|
||||
jid::Jid,
|
||||
minidom::Element,
|
||||
parsers::{disco::DiscoInfoResult, ns, private::Query as PrivateXMLQuery, roster::Roster},
|
||||
Element, Jid,
|
||||
};
|
||||
|
||||
use crate::{disco, pubsub, upload, Agent, Event};
|
||||
|
|
|
|||
|
|
@ -6,11 +6,12 @@
|
|||
|
||||
use tokio_xmpp::connect::ServerConnector;
|
||||
use tokio_xmpp::{
|
||||
jid::Jid,
|
||||
minidom::Element,
|
||||
parsers::{
|
||||
iq::Iq,
|
||||
stanza_error::{DefinedCondition, ErrorType, StanzaError},
|
||||
},
|
||||
Element, Jid,
|
||||
};
|
||||
|
||||
use crate::{Agent, Event};
|
||||
|
|
|
|||
Loading…
Reference in a new issue