We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo run
cargo build
1 parent 57fa8fc commit 84298cfCopy full SHA for 84298cf
ui_test/src/dependencies.rs
@@ -28,6 +28,8 @@ pub fn build_dependencies(config: &Config) -> Result<Dependencies> {
28
};
29
let mut build = Command::new(program);
30
build.args(args);
31
+ // HACK: we're using `cargo run` (or `cargo miri run`), because the latter does not
32
+ // support `cargo miri build` yet.
33
build.arg("run");
34
35
// Reusable closure for setting up the environment both for artifact generation and `cargo_metadata`
0 commit comments