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,8 +6,8 @@
|
|||
|
||||
use tokio_xmpp::connect::ServerConnector;
|
||||
use tokio_xmpp::{
|
||||
jid::Jid,
|
||||
parsers::{message::Message, muc::user::MucUser},
|
||||
Jid,
|
||||
};
|
||||
|
||||
use crate::{delay::StanzaTimeInfo, Agent, Event};
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
use tokio_xmpp::connect::ServerConnector;
|
||||
use tokio_xmpp::{parsers::message::Message, Jid};
|
||||
use tokio_xmpp::{jid::Jid, parsers::message::Message};
|
||||
|
||||
use crate::{delay::StanzaTimeInfo, Agent, Event};
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
use tokio_xmpp::connect::ServerConnector;
|
||||
use tokio_xmpp::{
|
||||
jid::Jid,
|
||||
parsers::message::{Body, Message, MessageType},
|
||||
Jid,
|
||||
};
|
||||
|
||||
use crate::Agent;
|
||||
|
|
|
|||
Loading…
Reference in a new issue