From 17cb1e96844920b48a79ae3e297409dce90afdd2 Mon Sep 17 00:00:00 2001 From: Alexander Tarasov Date: Thu, 14 Aug 2025 07:35:23 +0300 Subject: [PATCH] reformat imports a bit =) --- src/main.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5adde34..8ccbfc8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,11 @@ use clap::{Error, Parser}; + use std::collections::HashSet; -use std::fs::{File, ReadDir}; -use std::fs::{copy, create_dir, read_dir, remove_dir_all, remove_file, set_permissions}; +use std::fs::{ + copy, create_dir, read_dir, remove_dir_all, remove_file, set_permissions, File, ReadDir, +}; use std::io::Write; -use std::path::absolute; -use std::path::{Path, PathBuf}; +use std::path::{absolute, Path, PathBuf}; #[cfg(target_os = "windows")] const BUILD_ROMFS_BIN: &[u8] = include_bytes!("../switch-tools/build_romfs.exe");