Bump libs. added CI

This commit is contained in:
AB
2025-11-29 01:47:15 +02:00
parent 596369d732
commit 63961624b6
5 changed files with 184 additions and 24 deletions

View File

@@ -64,26 +64,6 @@ impl XrayRunner {
Ok(())
}
pub fn is_running(&mut self) -> bool {
if let Some(process) = &mut self.process {
match process.try_wait() {
Ok(Some(_)) => {
// Process has exited
self.process = None;
false
}
Ok(None) => true, // Process is still running
Err(_) => {
// Error checking status, assume not running
self.process = None;
false
}
}
} else {
false
}
}
}
impl Drop for XrayRunner {