Remove now-useless "extern crate"s.

This commit is contained in:
Emmanuel Gil Peyrot 2018-12-18 19:04:02 +01:00
commit 3aba4e7070
4 changed files with 1 additions and 34 deletions

View file

@ -2,23 +2,6 @@
//! XMPP implemeentation with asynchronous I/O using Tokio.
extern crate futures;
extern crate tokio;
extern crate tokio_io;
extern crate tokio_codec;
extern crate bytes;
extern crate xml5ever;
extern crate quick_xml;
extern crate minidom;
extern crate native_tls;
extern crate tokio_tls;
extern crate sasl;
extern crate jid;
extern crate trust_dns_resolver;
extern crate trust_dns_proto;
extern crate idna;
extern crate xmpp_parsers;
extern crate try_from;
#[macro_use]
extern crate derive_error;