run_make_support/external_deps/
cargo.rs

1
2
3
4
5
6
7
8
use crate::command::Command;
use crate::env_var;

/// Returns a command that can be used to invoke cargo. The cargo is provided by compiletest
/// through the `CARGO` env var.
pub fn cargo() -> Command {
    Command::new(env_var("CARGO"))
}