Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ struct Manifest {
manifest_version: String,
date: String,
pkg: BTreeMap<String, Package>,
renames: BTreeMap<String, Rename>
renames: BTreeMap<String, Rename>,
profiles: BTreeMap<String, Vec<String>>,
}

#[derive(Serialize)]
Expand Down Expand Up @@ -340,6 +341,7 @@ impl Builder {
date: self.date.to_string(),
pkg: BTreeMap::new(),
renames: BTreeMap::new(),
profiles: BTreeMap::new(),
};

self.package("rustc", &mut manifest.pkg, HOSTS);
Expand All @@ -355,6 +357,20 @@ impl Builder {
self.package("llvm-tools-preview", &mut manifest.pkg, TARGETS);
self.package("lldb-preview", &mut manifest.pkg, TARGETS);

self.profile("minimal",
&mut manifest.profiles,
&["rustc", "cargo", "rust-std", "rust-mingw"]);
self.profile("default",
&mut manifest.profiles,
&["rustc", "cargo", "rust-std", "rust-mingw",
"rust-docs", "rustfmt-preview", "clippy-preview"]);
self.profile("complete",
&mut manifest.profiles,
&["rustc", "cargo", "rust-std", "rust-mingw",
"rust-docs", "rustfmt-preview", "clippy-preview",
"rls-preview", "rust-src", "llvm-tools-preview",
"lldb-preview", "rust-analysis"]);

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() });
Expand Down Expand Up @@ -453,6 +469,13 @@ impl Builder {
return manifest;
}

fn profile(&mut self,
profile_name: &str,
dst: &mut BTreeMap<String, Vec<String>>,
pkgs: &[&str]) {
dst.insert(profile_name.to_owned(), pkgs.iter().map(|s| (*s).to_owned()).collect());
}

fn package(&mut self,
pkgname: &str,
dst: &mut BTreeMap<String, Package>,
Expand Down