Reformat use
declarations.
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
This commit is contained in:
parent
118f9350c5
commit
84ac80f192
1865 changed files with 8367 additions and 9199 deletions
|
@ -71,22 +71,17 @@
|
|||
mod tests;
|
||||
|
||||
use crate::borrow::{Borrow, Cow};
|
||||
use crate::cmp;
|
||||
use crate::collections::TryReserveError;
|
||||
use crate::error::Error;
|
||||
use crate::fmt;
|
||||
use crate::fs;
|
||||
use crate::ffi::{os_str, OsStr, OsString};
|
||||
use crate::hash::{Hash, Hasher};
|
||||
use crate::io;
|
||||
use crate::iter::FusedIterator;
|
||||
use crate::ops::{self, Deref};
|
||||
use crate::rc::Rc;
|
||||
use crate::str::FromStr;
|
||||
use crate::sync::Arc;
|
||||
|
||||
use crate::ffi::{os_str, OsStr, OsString};
|
||||
use crate::sys;
|
||||
use crate::sys::path::{is_sep_byte, is_verbatim_sep, parse_prefix, MAIN_SEP_STR};
|
||||
use crate::{cmp, fmt, fs, io, sys};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// GENERAL NOTES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue