From 3c67ed450068a89ab4b0a4d8d3656d6eb0d35d63 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 19 Nov 2018 14:22:41 -0800 Subject: [PATCH] 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 --- src/tools/build-manifest/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) 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 @@ 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") -- 2.44.0