Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

command: Add process_group method to Command struct #5114

Merged
merged 2 commits into from Oct 29, 2022

Commits on Oct 27, 2022

  1. ci: Update Rust nightly version for cirrus CI

    The nightly version used by Cirrus CI is a few months old now. Update it to a
    recent nightly so that features relying on 1.64.0 can be landed.
    
    Further, fix up a doc generation warning that causes the FreeBSD doc CI to fail.
    HarveyHunt committed Oct 27, 2022
    Copy the full SHA
    aae33d3 View commit details
    Browse the repository at this point in the history
  2. command: Add process_group method to Command struct

    Rust 1.64 stabilised the `process_group` method of the
    `std::os::unix::process::CommandExt` trait. This allows the
    caller to set the process group that a command is spawned in.
    
    Expose that functionality from Tokio's `Command` structure,
    behind the unstable feature.
    
    This fixes tokio-rs#4312.
    HarveyHunt committed Oct 27, 2022
    Copy the full SHA
    1763601 View commit details
    Browse the repository at this point in the history