aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-05 13:55:36 +0100
committerJonas Maier <>2026-03-05 13:55:36 +0100
commit66add60b315b2f04f4dc76560070c469a12fbdd6 (patch)
tree7264df30258acf1f33e02bcf06538c9a7915c028
parentfc2043d153bb3b38e0cc7c3ce3bfae621858e0b5 (diff)
downloadpish-66add60b315b2f04f4dc76560070c469a12fbdd6.tar.gz
remove unused imports
-rw-r--r--src/main.rs2
-rw-r--r--src/run/mod.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index ef269a6..c912c04 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -3,7 +3,7 @@ use std::io::{self, IsTerminal, Read, Write};
use std::os::unix::ffi::OsStrExt;
use std::os::unix::io::AsRawFd;
use std::path::Path;
-use std::process::{Child, Command, Stdio};
+use std::process::{Command, Stdio};
pub mod cursor;
pub mod linebuf;
diff --git a/src/run/mod.rs b/src/run/mod.rs
index 47bf175..5e3b3e7 100644
--- a/src/run/mod.rs
+++ b/src/run/mod.rs
@@ -2,7 +2,6 @@ use std::collections::HashMap;
use std::fs;
use std::os::unix::fs::PermissionsExt;
use std::path::PathBuf;
-use std::thread::Thread;
use crate::parse::Ast;
use crate::*;