Bump xmpp-parsers to 0.12.2.
This also removes minidom, jid and try_from as direct dependencies, since they are now reexported by xmpp-parsers.
This commit is contained in:
parent
5eb211c9fc
commit
62e9dcc022
13 changed files with 14 additions and 26 deletions
|
|
@ -1,11 +1,9 @@
|
|||
use futures::{future, Sink, Stream};
|
||||
use jid::Jid;
|
||||
use minidom::Element;
|
||||
use std::env::args;
|
||||
use std::process::exit;
|
||||
use tokio::runtime::current_thread::Runtime;
|
||||
use tokio_xmpp::Client;
|
||||
use try_from::TryFrom;
|
||||
use xmpp_parsers::{Jid, Element, TryFrom};
|
||||
use xmpp_parsers::message::{Body, Message, MessageType};
|
||||
use xmpp_parsers::presence::{Presence, Show as PresenceShow, Type as PresenceType};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,10 @@
|
|||
use futures::{future, Sink, Stream};
|
||||
use jid::Jid;
|
||||
use minidom::Element;
|
||||
use std::env::args;
|
||||
use std::process::exit;
|
||||
use std::str::FromStr;
|
||||
use tokio::runtime::current_thread::Runtime;
|
||||
use tokio_xmpp::Component;
|
||||
use try_from::TryFrom;
|
||||
use xmpp_parsers::{Jid, Element, TryFrom};
|
||||
use xmpp_parsers::message::{Body, Message, MessageType};
|
||||
use xmpp_parsers::presence::{Presence, Show as PresenceShow, Type as PresenceType};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue