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 @@ -374,7 +374,6 @@ impl Builder {
374374 // NOTE: this profile is effectively deprecated; do not add new components to it.
375375 let mut complete = default;
376376 complete. extend ( [
377- Rls ,
378377 RustAnalyzer ,
379378 RustSrc ,
380379 LlvmTools ,
@@ -463,7 +462,6 @@ impl Builder {
463462 // but might be marked as unavailable if they weren't built.
464463 PkgType :: Clippy
465464 | PkgType :: Miri
466- | PkgType :: Rls
467465 | PkgType :: RustAnalyzer
468466 | PkgType :: Rustfmt
469467 | PkgType :: LlvmTools
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ pkg_type! {
5050 Cargo = "cargo" ,
5151 HtmlDocs = "rust-docs" ,
5252 RustAnalysis = "rust-analysis" ,
53- Rls = "rls" ; preview = true ,
5453 RustAnalyzer = "rust-analyzer" ; preview = true ,
5554 Clippy = "clippy" ; preview = true ,
5655 Rustfmt = "rustfmt" ; preview = true ,
@@ -76,7 +75,6 @@ impl PkgType {
7675 fn should_use_rust_version ( & self ) -> bool {
7776 match self {
7877 PkgType :: Cargo => false ,
79- PkgType :: Rls => false ,
8078 PkgType :: RustAnalyzer => false ,
8179 PkgType :: Clippy => false ,
8280 PkgType :: Rustfmt => false ,
@@ -116,7 +114,6 @@ impl PkgType {
116114 HtmlDocs => HOSTS ,
117115 JsonDocs => HOSTS ,
118116 RustSrc => & [ "*" ] ,
119- Rls => HOSTS ,
120117 RustAnalyzer => HOSTS ,
121118 Clippy => HOSTS ,
122119 Miri => HOSTS ,
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ pub fn filter_dirs(path: &Path) -> bool {
2828 "src/doc/rust-by-example" ,
2929 "src/doc/rustc-dev-guide" ,
3030 "src/doc/reference" ,
31- // Filter RLS output directories
32- "target/rls" ,
3331 "src/bootstrap/target" ,
3432 "vendor" ,
3533 ] ;
You can’t perform that action at this time.
0 commit comments