aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-07-29 01:13:08 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-07-29 01:13:08 +0200
commitd41c7ffad0fb86871eed657e139e732e5c483df0 (patch)
tree4254d07d9e028a7c352471c9aaa3c311a4caf6c1 /src
parent0218e1a4327f317f3aa16ea83b1a52019d5c37a0 (diff)
Reorder imports, and remove unused ones
Diffstat (limited to 'src')
-rw-r--r--src/main.rs5
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;