chiark / gitweb /
sort dependencies
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 27 Nov 2020 23:29:46 +0000 (23:29 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 27 Nov 2020 23:29:46 +0000 (23:29 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
src/imports.rs

index 52a1131c3efefd6deb34fc35c7c34f04f74be20c..660203cbc5c4c9e46bc585cb67e6898d8051d5b6 100644 (file)
@@ -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 _;