From 6886109fa6715e425a92103bf266a4d644a8ad1d Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 14 Feb 2022 12:08:47 -0600 Subject: [PATCH] refactor: Make use refactor friendly --- src/build/app.rs | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/build/app.rs b/src/build/app.rs index afb9d98c..2972c447 100644 --- a/src/build/app.rs +++ b/src/build/app.rs @@ -1,15 +1,13 @@ #![allow(deprecated)] // Std -use std::{ - collections::HashMap, - env, - ffi::OsString, - fmt, - io::{self, Write}, - ops::Index, - path::Path, -}; +use std::collections::HashMap; +use std::env; +use std::ffi::OsString; +use std::fmt; +use std::io::{self, Write}; +use std::ops::Index; +use std::path::Path; // Third Party use os_str_bytes::RawOsStr;