mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Cargo.toml, echo_bot: update xmpp-parsers to 0.7.0
This commit is contained in:
parent
a204e66709
commit
6e506fbc57
2 changed files with 3 additions and 4 deletions
|
@ -17,7 +17,7 @@ sasl = "*"
|
||||||
rustc-serialize = "*"
|
rustc-serialize = "*"
|
||||||
jid = "*"
|
jid = "*"
|
||||||
domain = "0.2.1"
|
domain = "0.2.1"
|
||||||
xmpp-parsers = "0.6.0"
|
xmpp-parsers = "0.7.0"
|
||||||
idna = "*"
|
idna = "*"
|
||||||
try_from = "0.2.2"
|
try_from = "0.2.2"
|
||||||
sha-1 = "0.4.1"
|
sha-1 = "0.4.1"
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
#![feature(try_from)]
|
|
||||||
|
|
||||||
extern crate futures;
|
extern crate futures;
|
||||||
extern crate tokio_core;
|
extern crate tokio_core;
|
||||||
extern crate tokio_xmpp;
|
extern crate tokio_xmpp;
|
||||||
extern crate jid;
|
extern crate jid;
|
||||||
extern crate minidom;
|
extern crate minidom;
|
||||||
extern crate xmpp_parsers;
|
extern crate xmpp_parsers;
|
||||||
|
extern crate try_from;
|
||||||
|
|
||||||
use std::env::args;
|
use std::env::args;
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
use std::convert::TryFrom;
|
use try_from::TryFrom;
|
||||||
use tokio_core::reactor::Core;
|
use tokio_core::reactor::Core;
|
||||||
use futures::{Future, Stream, Sink, future};
|
use futures::{Future, Stream, Sink, future};
|
||||||
use tokio_xmpp::Client;
|
use tokio_xmpp::Client;
|
||||||
|
|
Loading…
Reference in a new issue