From 66add60b315b2f04f4dc76560070c469a12fbdd6 Mon Sep 17 00:00:00 2001 From: Jonas Maier <> Date: Thu, 5 Mar 2026 13:55:36 +0100 Subject: remove unused imports --- src/main.rs | 2 +- src/run/mod.rs | 1 - 2 files changed, 1 insertion(+), 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::*; -- cgit v1.2.3