Add save-analysis data to nightly manifests.
For use by RLS.
This commit is contained in:
parent
fc6f092c21
commit
9ce8bb9f9d
1 changed files with 10 additions and 0 deletions
|
|
@ -215,6 +215,10 @@ impl Builder {
|
|||
self.package("rust-docs", &mut manifest.pkg, TARGETS);
|
||||
self.package("rust-src", &mut manifest.pkg, &["*"]);
|
||||
|
||||
if self.channel == "rust-nightly" {
|
||||
self.package("analysis", &mut manifest.pkg, TARGETS);
|
||||
}
|
||||
|
||||
let mut pkg = Package {
|
||||
version: self.cached_version("rust").to_string(),
|
||||
target: HashMap::new(),
|
||||
|
|
@ -264,6 +268,12 @@ impl Builder {
|
|||
target: target.to_string(),
|
||||
});
|
||||
}
|
||||
if self.channel == "nightly" {
|
||||
extensions.push(Component {
|
||||
pkg: "rust-analysis".to_string(),
|
||||
target: target.to_string(),
|
||||
});
|
||||
}
|
||||
}
|
||||
extensions.push(Component {
|
||||
pkg: "rust-src".to_string(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue