Skip to content

Commit e5b3ed8

Browse files
committed
Actually publish miri in the manifest
1 parent f22dca0 commit e5b3ed8

File tree

1 file changed

+3
-1
lines changed
  • src/tools/build-manifest/src

1 file changed

+3
-1
lines changed

src/tools/build-manifest/src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ impl Builder {
358358
self.package("rust-src", &mut manifest.pkg, &["*"]);
359359
self.package("rls-preview", &mut manifest.pkg, HOSTS);
360360
self.package("clippy-preview", &mut manifest.pkg, HOSTS);
361+
self.package("miri", &mut manifest.pkg, HOSTS);
361362
self.package("rustfmt-preview", &mut manifest.pkg, HOSTS);
362363
self.package("rust-analysis", &mut manifest.pkg, TARGETS);
363364
self.package("llvm-tools-preview", &mut manifest.pkg, TARGETS);
@@ -375,7 +376,7 @@ impl Builder {
375376
&["rustc", "cargo", "rust-std", "rust-mingw",
376377
"rust-docs", "rustfmt-preview", "clippy-preview",
377378
"rls-preview", "rust-src", "llvm-tools-preview",
378-
"lldb-preview", "rust-analysis"]);
379+
"lldb-preview", "rust-analysis", "miri"]);
379380

380381
manifest.renames.insert("rls".to_owned(), Rename { to: "rls-preview".to_owned() });
381382
manifest.renames.insert("rustfmt".to_owned(), Rename { to: "rustfmt-preview".to_owned() });
@@ -422,6 +423,7 @@ impl Builder {
422423
// weren't built
423424
extensions.extend(vec![
424425
Component { pkg: "clippy-preview".to_string(), target: host.to_string() },
426+
Component { pkg: "miri".to_string(), target: host.to_string() },
425427
Component { pkg: "rls-preview".to_string(), target: host.to_string() },
426428
Component { pkg: "rustfmt-preview".to_string(), target: host.to_string() },
427429
Component { pkg: "llvm-tools-preview".to_string(), target: host.to_string() },

0 commit comments

Comments
 (0)