diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-07-29 01:13:08 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-07-29 01:13:08 +0200 |
commit | d41c7ffad0fb86871eed657e139e732e5c483df0 (patch) | |
tree | 4254d07d9e028a7c352471c9aaa3c311a4caf6c1 /src/main.rs | |
parent | 0218e1a4327f317f3aa16ea83b1a52019d5c37a0 (diff) |
Reorder imports, and remove unused ones
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index c841a2f..eba0943 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,14 +3,15 @@ mod main_result; use std::{ cmp::Reverse, - collections::{HashSet, hash_map::DefaultHasher}, + collections::{hash_map::DefaultHasher, HashSet}, env, ffi::OsString, fs, + hash::{Hash, Hasher}, io::{self, BufRead, BufReader, BufWriter, Write}, iter, path::{Component, Path, PathBuf}, - process::{Command, Stdio}, hash::{Hash, Hasher}, fmt::{Display, Formatter, self}, + process::{Command, Stdio}, }; use tempfile::tempdir; |