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 a80525d commit ad77b41Copy full SHA for ad77b41
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