File tree 3 files changed +0
-7
lines changed
3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,6 @@ impl Builder {
374
374
// NOTE: this profile is effectively deprecated; do not add new components to it.
375
375
let mut complete = default;
376
376
complete. extend ( [
377
- Rls ,
378
377
RustAnalyzer ,
379
378
RustSrc ,
380
379
LlvmTools ,
@@ -463,7 +462,6 @@ impl Builder {
463
462
// but might be marked as unavailable if they weren't built.
464
463
PkgType :: Clippy
465
464
| PkgType :: Miri
466
- | PkgType :: Rls
467
465
| PkgType :: RustAnalyzer
468
466
| PkgType :: Rustfmt
469
467
| PkgType :: LlvmTools
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ pkg_type! {
50
50
Cargo = "cargo" ,
51
51
HtmlDocs = "rust-docs" ,
52
52
RustAnalysis = "rust-analysis" ,
53
- Rls = "rls" ; preview = true ,
54
53
RustAnalyzer = "rust-analyzer" ; preview = true ,
55
54
Clippy = "clippy" ; preview = true ,
56
55
Rustfmt = "rustfmt" ; preview = true ,
@@ -76,7 +75,6 @@ impl PkgType {
76
75
fn should_use_rust_version ( & self ) -> bool {
77
76
match self {
78
77
PkgType :: Cargo => false ,
79
- PkgType :: Rls => false ,
80
78
PkgType :: RustAnalyzer => false ,
81
79
PkgType :: Clippy => false ,
82
80
PkgType :: Rustfmt => false ,
@@ -116,7 +114,6 @@ impl PkgType {
116
114
HtmlDocs => HOSTS ,
117
115
JsonDocs => HOSTS ,
118
116
RustSrc => & [ "*" ] ,
119
- Rls => HOSTS ,
120
117
RustAnalyzer => HOSTS ,
121
118
Clippy => HOSTS ,
122
119
Miri => HOSTS ,
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ pub fn filter_dirs(path: &Path) -> bool {
28
28
"src/doc/rust-by-example" ,
29
29
"src/doc/rustc-dev-guide" ,
30
30
"src/doc/reference" ,
31
- // Filter RLS output directories
32
- "target/rls" ,
33
31
"src/bootstrap/target" ,
34
32
"vendor" ,
35
33
] ;
You can’t perform that action at this time.
0 commit comments