5个不稳定版本

0.3.2 2024年1月2日
0.3.1 2024年1月2日
0.3.0 2023年11月15日
0.2.0 2023年11月8日
0.1.0 2023年11月8日

#294 in Unix APIs

Download history • Rust 包仓库 4/week @ 2024-03-17 • Rust 包仓库 7/week @ 2024-03-31 • Rust 包仓库 35/week @ 2024-04-07 • Rust 包仓库 1/week @ 2024-04-21 • Rust 包仓库 17/week @ 2024-04-28 • Rust 包仓库 81/week @ 2024-05-05 • Rust 包仓库 9/week @ 2024-05-12 • Rust 包仓库 4/week @ 2024-05-19 • Rust 包仓库 19/week @ 2024-05-26 • Rust 包仓库 7/week @ 2024-06-02 • Rust 包仓库 24/week @ 2024-06-09 • Rust 包仓库 61/week @ 2024-06-16 • Rust 包仓库 76/week @ 2024-06-23 • Rust 包仓库 115/week @ 2024-06-30 • Rust 包仓库

277 monthly downloads

MIT/Apache

10KB
165 lines

tokio-process-terminate

扩展了 tokio::process::Child 以终止进程。

use tokio::process::Command;
use tokio_process_terminate::TerminateExt;

#[tokio::main]
async fn main() {
    let mut command = Command::new("sleep")
        .arg("10")
        .spawn()
        .unwrap();
    tokio::time::sleep(std::time::Duration::from_secs(1)).await;
    let exit = command.terminate_wait().await.unwrap();
    dbg!(exit);
    let code = exit.code();
    // On Unix, code should be `None` if the process was terminated by a signal.
    assert!(code.is_none());
}

lib.rs:

扩展了 tokio::process::Child 以终止进程。

use tokio::process::Command;
use tokio_process_terminate::TerminateExt;

#[tokio::main]
async fn main() {
    let mut command = Command::new("sleep")
        .arg("10")
        .spawn()
        .unwrap();
    tokio::time::sleep(std::time::Duration::from_secs(1)).await;
    let exit = command.terminate_wait().await.unwrap();
    dbg!(exit);
    let code = exit.code();
    // On Unix, code should be `None` if the process was terminated by a signal.
    assert!(code.is_none());
}

依赖

~3–13MB
~144K SLoC