15 stable releases (4 major)

5.0.1 Nov 18, 2023
4.1.0 Nov 4, 2023
3.0.0 Oct 30, 2023
2.1.1 Oct 30, 2023
1.0.4 Jul 25, 2021

#26 in Operating systems

Download history 23206/week @ 2024-12-10 18317/week @ 2024-12-17 10023/week @ 2024-12-24 10893/week @ 2024-12-31 20170/week @ 2025-01-07 18518/week @ 2025-01-14 19548/week @ 2025-01-21 20798/week @ 2025-01-28 22817/week @ 2025-02-04 22667/week @ 2025-02-11 19689/week @ 2025-02-18 20872/week @ 2025-02-25 20901/week @ 2025-03-04 20397/week @ 2025-03-11 21060/week @ 2025-03-18 17801/week @ 2025-03-25

83,504 downloads per month
Used in 64 crates (17 directly)

Apache-2.0 OR MIT

165KB
1K SLoC

Crate release version Crate license: Apache 2.0 or MIT CI status

Command Group

Extension to Command to spawn in a process group.

  • API documentation.
  • Dual-licensed with Apache 2.0 and MIT.
  • Minimum Supported Rust Version: 1.68.0.
    • Only the last five stable versions are supported.
    • MSRV increases within that range at publish time will not incur major version bumps.

Quick start

[dependencies]
command-group = "5.0.1"
use std::process::Command;
use command_group::CommandGroup;

let mut child = Command::new("watch").arg("ls").group_spawn()?;
let status = child.wait()?;
dbg!(status);

Async: Tokio

[dependencies]
command-group = { version = "5.0.1", features = ["with-tokio"] }
tokio = { version = "1.10.0", features = ["full"] }
use tokio::process::Command;
use command_group::AsyncCommandGroup;

let mut child = Command::new("watch").arg("ls").group_spawn()?;
let status = child.wait().await?;
dbg!(status);

Also see the Examples!

Dependencies

~2–11MB
~99K SLoC