about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-11-20 09:08:24 +0000
committerbors <bors@rust-lang.org>2018-11-20 09:08:24 +0000
commit7a0cef74a8b859184b46d7ae6f7e01367fab5fb0 (patch)
tree9b4f3e85f4ad2c36fba7560fe1c8768770f29a11
parent046e054a995c7b293e26968774ff88b38661cd3c (diff)
parent3c67ed450068a89ab4b0a4d8d3656d6eb0d35d63 (diff)
downloadrust-7a0cef74a8b859184b46d7ae6f7e01367fab5fb0.tar.gz
rust-7a0cef74a8b859184b46d7ae6f7e01367fab5fb0.zip
Auto merge of #56081 - alexcrichton:update-manifest, r=nrc
Add temporary renames to manifests for rustfmt/clippy

This will be part of our strategy for shipping renamed versions of these
components for the Rust 2018 edition.

Closes #55967
-rw-r--r--src/tools/build-manifest/src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs
index 8781542ae04..bf95b31ae3c 100644
--- a/src/tools/build-manifest/src/main.rs
+++ b/src/tools/build-manifest/src/main.rs
@@ -355,6 +355,8 @@ impl Builder {
         self.package("lldb-preview", &mut manifest.pkg, TARGETS);
 
         manifest.renames.insert("rls".to_owned(), Rename { to: "rls-preview".to_owned() });
+        manifest.renames.insert("rustfmt".to_owned(), Rename { to: "rustfmt-preview".to_owned() });
+        manifest.renames.insert("clippy".to_owned(), Rename { to: "clippy-preview".to_owned() });
 
         let mut pkg = Package {
             version: self.cached_version("rust")