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
12
src/error.rs
12
src/error.rs
|
|
@ -1,11 +1,11 @@
|
|||
use std::io::Error as IoError;
|
||||
use std::error::Error as StdError;
|
||||
use std::str::Utf8Error;
|
||||
use std::borrow::Cow;
|
||||
use std::fmt;
|
||||
use native_tls::Error as TlsError;
|
||||
use trust_dns_resolver::error::ResolveError;
|
||||
use std::borrow::Cow;
|
||||
use std::error::Error as StdError;
|
||||
use std::fmt;
|
||||
use std::io::Error as IoError;
|
||||
use std::str::Utf8Error;
|
||||
use trust_dns_proto::error::ProtoError;
|
||||
use trust_dns_resolver::error::ResolveError;
|
||||
|
||||
use xmpp_parsers::error::Error as ParsersError;
|
||||
use xmpp_parsers::sasl::DefinedCondition as SaslDefinedCondition;
|
||||
|
|
|
|||
Loading…
Reference in a new issue