Run cargo fmt on the entire project.
This commit is contained in:
parent
3aba4e7070
commit
51bae9b0e5
14 changed files with 591 additions and 607 deletions
|
|
@ -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};
|
||||
|
|
|
|||
Loading…
Reference in a new issue