Merge branch 'migrate-tokio'

This commit is contained in:
Astro 2018-09-06 18:20:05 +02:00
commit 0b7210d597
9 changed files with 196 additions and 133 deletions

View file

@ -3,7 +3,7 @@
//! XMPP implemeentation with asynchronous I/O using Tokio.
extern crate futures;
extern crate tokio_core;
extern crate tokio;
extern crate tokio_io;
extern crate tokio_codec;
extern crate bytes;
@ -14,7 +14,8 @@ extern crate native_tls;
extern crate tokio_tls;
extern crate sasl;
extern crate jid;
extern crate domain;
extern crate trust_dns_resolver;
extern crate trust_dns_proto;
extern crate idna;
extern crate xmpp_parsers;
extern crate try_from;