It was reported in tokio-rs/tokio#4670 that tokio::process::Command broke between nightly-2022-04-29 and nightly-2022-04-30 on Windows. According to the tokio authors that struct is a wrapper over the standard library's std::process::Command. Looking at the PRs between those two nightlies the likely cause seems #96441, as it touches pipes on the affected platform.
It was reported in tokio-rs/tokio#4670 that
tokio::process::Commandbroke betweennightly-2022-04-29andnightly-2022-04-30on Windows. According to the tokio authors that struct is a wrapper over the standard library'sstd::process::Command. Looking at the PRs between those two nightlies the likely cause seems #96441, as it touches pipes on the affected platform.