Remove unused imports

This commit is contained in:
wendrul
2024-12-12 11:40:02 +01:00
parent 4d541d7ae6
commit 6bae455f86
5 changed files with 6 additions and 8 deletions
@@ -2,7 +2,7 @@
use std::{
collections::HashMap,
os::unix::fs::PermissionsExt,
path::{Path, PathBuf},
path::PathBuf,
process::Stdio,
};
+1 -2
View File
@@ -33,8 +33,7 @@ use anyhow::{anyhow, Result};
use std::path::Path;
use std::{
collections::{hash_map::DefaultHasher, HashMap},
hash::{Hash, Hasher},
collections::HashMap,
sync::Arc,
time::Duration,
};
@@ -1,9 +1,8 @@
use anyhow::anyhow;
use serde_json::value::RawValue;
use std::{collections::HashMap, path::Path, process::Stdio};
use std::{collections::HashMap, process::Stdio};
use uuid::Uuid;
use windmill_parser_csharp::parse_csharp_reqs;
use windmill_parser_rust::parse_rust_deps_into_manifest;
use itertools::Itertools;
use tokio::{fs::File, io::AsyncReadExt, process::Command};
@@ -22,7 +21,7 @@ use crate::{
},
handle_child::handle_child,
AuthedClientBackgroundTask, CSHARP_CACHE_DIR, DISABLE_NSJAIL, DISABLE_NUSER, DOTNET_PATH,
HOME_ENV, NSJAIL_PATH, PATH_ENV, RUST_CACHE_DIR, TZ_ENV,
HOME_ENV, NSJAIL_PATH, PATH_ENV, TZ_ENV,
};
#[cfg(windows)]
+1 -1
View File
@@ -2,7 +2,7 @@ use convert_case::{Case, Casing};
use itertools::Itertools;
use regex::Regex;
use serde_json::value::RawValue;
use std::{collections::HashMap, path::Path, process::Stdio};
use std::{collections::HashMap, process::Stdio};
use tokio::{fs::File, io::AsyncReadExt, process::Command};
use uuid::Uuid;
use windmill_common::{
+1 -1
View File
@@ -1,5 +1,5 @@
use serde_json::value::RawValue;
use std::{collections::HashMap, path::Path, process::Stdio};
use std::{collections::HashMap, process::Stdio};
use uuid::Uuid;
use windmill_parser_rust::parse_rust_deps_into_manifest;