Move to edition 2018.
This commit is contained in:
parent
7ba1b5604f
commit
24b2ff1851
10 changed files with 26 additions and 25 deletions
10
src/lib.rs
10
src/lib.rs
|
|
@ -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};
|
||||
|
|
|
|||
Loading…
Reference in a new issue