aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-11 16:44:03 +0100
committerJonas Maier <>2026-03-11 16:44:03 +0100
commitcb4be2c707dcfbf06ea7d08fa603e2257e2f669f (patch)
tree42781f53bc47d59e687f1b54378c5c4e0979733a /src/main.rs
parent18ad2173816bf455c2dabece9009aae29133b3d3 (diff)
downloadpish-cb4be2c707dcfbf06ea7d08fa603e2257e2f669f.tar.gz
cancelable builtins
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 222a5c5..9e9d640 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -8,7 +8,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::{Command, Stdio};
+use std::process::Command;
use std::sync::{Arc, Mutex};
use std::thread::sleep;
use std::time::Duration;
@@ -27,9 +27,9 @@ pub mod parse;
pub mod raw;
pub mod reload;
pub mod run;
+pub mod rw;
pub mod serialization;
pub mod wait;
-pub mod rw;
use linebuf::LineBuf;
use raw::*;