From 967052a4e21e90132f5b3543b4d08e9d9d5029f7 Mon Sep 17 00:00:00 2001 From: pyro57000 Date: Thu, 13 Mar 2025 15:03:14 -0500 Subject: [PATCH] cleaned up un-needed library imports from box_controls. --- pentest_tool/src/box_controls.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pentest_tool/src/box_controls.rs b/pentest_tool/src/box_controls.rs index 8dd148d..7e21fab 100644 --- a/pentest_tool/src/box_controls.rs +++ b/pentest_tool/src/box_controls.rs @@ -1,14 +1,10 @@ -use core::error; -use std::os::unix::thread::JoinHandleExt; -use std::process::{Command, Stdio}; +use std::process::Command; use std::{path::PathBuf, process}; use std::env; use std::fs; -use std::io::{stdin, BufRead, BufReader}; use std::io::Write; -use std::thread::{self, JoinHandle, Thread}; +use std::thread::{self, JoinHandle}; use std::time::Duration; -use std::str::FromStr; use crate::{get_user_input, Project}; pub fn stop_all_boxes(projects: &Vec){