From: Ian Jackson Date: Fri, 27 Nov 2020 23:29:46 +0000 (+0000) Subject: sort dependencies X-Git-Tag: otter-0.2.0~322 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8c653fac6591b706122d30e3db365168ce6876c7;p=otter.git sort dependencies Signed-off-by: Ian Jackson --- diff --git a/src/imports.rs b/src/imports.rs index 52a1131c..660203cb 100644 --- a/src/imports.rs +++ b/src/imports.rs @@ -2,41 +2,41 @@ // SPDX-License-Identifier: AGPL-3.0-or-later // There is NO WARRANTY. -pub use std::io; -pub use std::io::{BufReader,Read,BufRead,BufWriter,Write}; -pub use std::io::ErrorKind; -pub use std::fmt::Write as _; +pub use std::borrow::Borrow; +pub use std::borrow::Cow; +pub use std::cmp::{self,min,max,Ordering}; +pub use std::collections::VecDeque; +pub use std::collections::{HashMap,hash_map,HashSet}; +pub use std::convert::{TryFrom,TryInto}; +pub use std::env; +pub use std::error::Error; pub use std::fmt::Formatter; +pub use std::fmt::Write as _; pub use std::fmt::{self,Display,Debug}; -pub use std::thread::{self,sleep}; -pub use std::time::Duration; -pub use std::sync::{Arc,Mutex,MutexGuard,Condvar}; -pub use std::sync::{RwLock,RwLockReadGuard,RwLockWriteGuard}; -pub use std::collections::{HashMap,hash_map,HashSet}; +pub use std::fs::File; +pub use std::fs; pub use std::hash::Hash; -pub use std::borrow::Borrow; -pub use std::convert::{TryFrom,TryInto}; -pub use std::str; -pub use std::str::FromStr; -pub use std::iter; +pub use std::io::ErrorKind; +pub use std::io::{BufReader,Read,BufRead,BufWriter,Write}; +pub use std::io; pub use std::iter::repeat_with; -pub use std::collections::VecDeque; -pub use std::num::{Wrapping, TryFromIntError}; -pub use std::cmp::{self,min,max,Ordering}; -pub use std::error::Error; +pub use std::iter; pub use std::marker::PhantomData; -pub use std::ops::{Deref,DerefMut}; -pub use std::fs; -pub use std::fs::File; pub use std::mem; +pub use std::num::{Wrapping, TryFromIntError}; +pub use std::ops::{Deref,DerefMut}; +pub use std::os::unix::ffi::OsStrExt; pub use std::os::unix; -pub use std::time::Instant; pub use std::path::PathBuf; -pub use std::string::ParseError; -pub use std::os::unix::ffi::OsStrExt; -pub use std::env; pub use std::process::exit; -pub use std::borrow::Cow; +pub use std::str::FromStr; +pub use std::str; +pub use std::string::ParseError; +pub use std::sync::{Arc,Mutex,MutexGuard,Condvar}; +pub use std::sync::{RwLock,RwLockReadGuard,RwLockWriteGuard}; +pub use std::thread::{self,sleep}; +pub use std::time::Duration; +pub use std::time::Instant; pub use boolinator::Boolinator as _;