Cargo.toml, echo_bot: update xmpp-parsers to 0.7.0

This commit is contained in:
Emmanuel Gil Peyrot 2017-07-23 19:03:29 +01:00 committed by Astro
commit 6e506fbc57
2 changed files with 3 additions and 4 deletions

View file

@ -1,15 +1,14 @@
#![feature(try_from)]
extern crate futures;
extern crate tokio_core;
extern crate tokio_xmpp;
extern crate jid;
extern crate minidom;
extern crate xmpp_parsers;
extern crate try_from;
use std::env::args;
use std::process::exit;
use std::convert::TryFrom;
use try_from::TryFrom;
use tokio_core::reactor::Core;
use futures::{Future, Stream, Sink, future};
use tokio_xmpp::Client;