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
This commit is contained in:
Alex Crichton 2018-11-19 14:22:41 -08:00
parent 9e8a982a23
commit 3c67ed4500

View File

@ -355,6 +355,8 @@ fn build_manifest(&mut self) -> Manifest {
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")