File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ static TOOLS: &'static [&'static str] = &[
2727 "rustfmt" ,
2828 "cargo-fmt" ,
2929 "cargo-clippy" ,
30+ "cargo-miri" ,
3031] ;
3132
3233#[ no_mangle]
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ pub static TOOLS: &'static [&'static str] = &[
3131 "rust-gdb" ,
3232 "rls" ,
3333 "cargo-clippy" ,
34+ "cargo-miri" ,
3435] ;
3536
3637// Tools which are commonly installed by Cargo as well as rustup. We take a bit
@@ -54,6 +55,7 @@ fn component_for_bin(binary: &str) -> Option<&'static str> {
5455 "rust-gdb" => Some ( "gdb-preview" ) ,
5556 "rls" => Some ( "rls" ) ,
5657 "cargo-clippy" => Some ( "clippy" ) ,
58+ "cargo-miri" => Some ( "miri" ) ,
5759 "rustfmt" | "cargo-fmt" => Some ( "rustfmt" ) ,
5860 _ => None ,
5961 }
You can’t perform that action at this time.
0 commit comments