Run cargo fmt on the entire project.

This commit is contained in:
Emmanuel Gil Peyrot 2018-12-18 19:04:31 +01:00
commit 51bae9b0e5
14 changed files with 591 additions and 607 deletions

View file

@ -5,17 +5,17 @@
#[macro_use]
extern crate derive_error;
mod starttls;
mod stream_start;
pub mod xmpp_codec;
pub mod xmpp_stream;
mod stream_start;
mod starttls;
pub use crate::starttls::StartTlsClient;
mod happy_eyeballs;
mod event;
mod happy_eyeballs;
pub use crate::event::Event;
mod client;
pub use crate::client::Client;
mod component;
pub use crate::component::Component;
mod error;
pub use crate::error::{Error, ProtocolError, AuthError, ConnecterError, ParseError, ParserError};
pub use crate::error::{AuthError, ConnecterError, Error, ParseError, ParserError, ProtocolError};