refactor: Make use refactor friendly

This commit is contained in:
Ed Page 2022-02-14 12:08:47 -06:00
parent bf771a266c
commit 6886109fa6

View file

@ -1,15 +1,13 @@
#![allow(deprecated)] #![allow(deprecated)]
// Std // Std
use std::{ use std::collections::HashMap;
collections::HashMap, use std::env;
env, use std::ffi::OsString;
ffi::OsString, use std::fmt;
fmt, use std::io::{self, Write};
io::{self, Write}, use std::ops::Index;
ops::Index, use std::path::Path;
path::Path,
};
// Third Party // Third Party
use os_str_bytes::RawOsStr; use os_str_bytes::RawOsStr;