File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed
Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,6 @@ impl Builder {
386386 // NOTE: this profile is effectively deprecated; do not add new components to it.
387387 let mut complete = default;
388388 complete.extend([
389- Rls,
390389 RustAnalyzer,
391390 RustSrc,
392391 LlvmTools,
@@ -475,7 +474,6 @@ impl Builder {
475474 // but might be marked as unavailable if they weren't built.
476475 PkgType::Clippy
477476 | PkgType::Miri
478- | PkgType::Rls
479477 | PkgType::RustAnalyzer
480478 | PkgType::Rustfmt
481479 | PkgType::LlvmTools
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ pkg_type! {
5151 Cargo = "cargo",
5252 HtmlDocs = "rust-docs",
5353 RustAnalysis = "rust-analysis",
54- Rls = "rls"; preview = true,
5554 RustAnalyzer = "rust-analyzer"; preview = true,
5655 Clippy = "clippy"; preview = true,
5756 Rustfmt = "rustfmt"; preview = true,
@@ -77,7 +76,6 @@ impl PkgType {
7776 fn should_use_rust_version(&self) -> bool {
7877 match self {
7978 PkgType::Cargo => false,
80- PkgType::Rls => false,
8179 PkgType::RustAnalyzer => false,
8280 PkgType::Clippy => false,
8381 PkgType::Rustfmt => false,
@@ -118,7 +116,6 @@ impl PkgType {
118116 HtmlDocs => HOSTS,
119117 JsonDocs => HOSTS,
120118 RustSrc => &["*"],
121- Rls => HOSTS,
122119 RustAnalyzer => HOSTS,
123120 Clippy => HOSTS,
124121 Miri => HOSTS,
Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ pub fn filter_dirs(path: &Path) -> bool {
3232 "src/doc/rustc-dev-guide" ,
3333 "src/doc/reference" ,
3434 "src/gcc" ,
35- // Filter RLS output directories
36- "target/rls" ,
3735 "src/bootstrap/target" ,
3836 "vendor" ,
3937 ] ;
You can’t perform that action at this time.
0 commit comments