Move to edition 2018.

This commit is contained in:
Emmanuel Gil Peyrot 2018-12-18 18:29:31 +01:00
commit 24b2ff1851
10 changed files with 26 additions and 25 deletions

View file

@ -26,13 +26,13 @@ pub mod xmpp_codec;
pub mod xmpp_stream;
mod stream_start;
mod starttls;
pub use starttls::StartTlsClient;
pub use crate::starttls::StartTlsClient;
mod happy_eyeballs;
mod event;
pub use event::Event;
pub use crate::event::Event;
mod client;
pub use client::Client;
pub use crate::client::Client;
mod component;
pub use component::Component;
pub use crate::component::Component;
mod error;
pub use error::{Error, ProtocolError, AuthError, ConnecterError, ParseError, ParserError};
pub use crate::error::{Error, ProtocolError, AuthError, ConnecterError, ParseError, ParserError};