about summary refs log tree commit diff
path: root/crates/stdx/src/process.rs
AgeCommit message (Collapse)AuthorLines
2022-06-13internal: Bring back JodChild into flychecking for cancellationLukas Wirth-36/+48
2021-10-14Kill the child process before waiting in streaming_outputLukas Wirth-0/+1
2021-10-03Add semicolons for consistencyAramis Razzaghipour-2/+2
`clippy::semicolon_if_nothing_returned`
2021-06-22Fix compilation on WASMFlorian Diebold-0/+16
Fixes #9214. Fixes #9210.
2021-06-13tree-wide: make rustdoc links spiky so they are clickableJade-2/+2
2021-04-20fix: no longer get stuck on windowsAleksey Kladov-0/+238
reading both stdout & stderr is a common gotcha, you need to drain them concurrently to avoid deadlocks. Not sure why I didn't do the right thing from the start. Seems like I assumed the stderr is short? That's not the case when cargo spams `compiling xyz` messages