I have an application that spends about 30 minutes executing benchmarks by invoking Cargo through std::process::Command. It would be really nice to be able to print intermediate results as each bench completes, but Command doesn't seem to expose anything. It would be sufficient for my purposes to be able to tee stdout/err to the parent process' stdout/err, but a more general mechanism may be desirable.