@@ -358,6 +358,7 @@ impl Builder {
358
358
self . package ( "rust-src" , & mut manifest. pkg , & [ "*" ] ) ;
359
359
self . package ( "rls-preview" , & mut manifest. pkg , HOSTS ) ;
360
360
self . package ( "clippy-preview" , & mut manifest. pkg , HOSTS ) ;
361
+ self . package ( "miri" , & mut manifest. pkg , HOSTS ) ;
361
362
self . package ( "rustfmt-preview" , & mut manifest. pkg , HOSTS ) ;
362
363
self . package ( "rust-analysis" , & mut manifest. pkg , TARGETS ) ;
363
364
self . package ( "llvm-tools-preview" , & mut manifest. pkg , TARGETS ) ;
@@ -375,7 +376,7 @@ impl Builder {
375
376
& [ "rustc" , "cargo" , "rust-std" , "rust-mingw" ,
376
377
"rust-docs" , "rustfmt-preview" , "clippy-preview" ,
377
378
"rls-preview" , "rust-src" , "llvm-tools-preview" ,
378
- "lldb-preview" , "rust-analysis" ] ) ;
379
+ "lldb-preview" , "rust-analysis" , "miri" ] ) ;
379
380
380
381
manifest. renames . insert ( "rls" . to_owned ( ) , Rename { to : "rls-preview" . to_owned ( ) } ) ;
381
382
manifest. renames . insert ( "rustfmt" . to_owned ( ) , Rename { to : "rustfmt-preview" . to_owned ( ) } ) ;
@@ -422,6 +423,7 @@ impl Builder {
422
423
// weren't built
423
424
extensions. extend ( vec ! [
424
425
Component { pkg: "clippy-preview" . to_string( ) , target: host. to_string( ) } ,
426
+ Component { pkg: "miri" . to_string( ) , target: host. to_string( ) } ,
425
427
Component { pkg: "rls-preview" . to_string( ) , target: host. to_string( ) } ,
426
428
Component { pkg: "rustfmt-preview" . to_string( ) , target: host. to_string( ) } ,
427
429
Component { pkg: "llvm-tools-preview" . to_string( ) , target: host. to_string( ) } ,
0 commit comments