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 @@ -386,7 +386,6 @@ impl Builder {
386
386
// NOTE: this profile is effectively deprecated; do not add new components to it.
387
387
let mut complete = default;
388
388
complete. extend ( [
389
- Rls ,
390
389
RustAnalyzer ,
391
390
RustSrc ,
392
391
LlvmTools ,
@@ -475,7 +474,6 @@ impl Builder {
475
474
// but might be marked as unavailable if they weren't built.
476
475
PkgType :: Clippy
477
476
| PkgType :: Miri
478
- | PkgType :: Rls
479
477
| PkgType :: RustAnalyzer
480
478
| PkgType :: Rustfmt
481
479
| PkgType :: LlvmTools
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ pkg_type! {
51
51
Cargo = "cargo" ,
52
52
HtmlDocs = "rust-docs" ,
53
53
RustAnalysis = "rust-analysis" ,
54
- Rls = "rls" ; preview = true ,
55
54
RustAnalyzer = "rust-analyzer" ; preview = true ,
56
55
Clippy = "clippy" ; preview = true ,
57
56
Rustfmt = "rustfmt" ; preview = true ,
@@ -77,7 +76,6 @@ impl PkgType {
77
76
fn should_use_rust_version ( & self ) -> bool {
78
77
match self {
79
78
PkgType :: Cargo => false ,
80
- PkgType :: Rls => false ,
81
79
PkgType :: RustAnalyzer => false ,
82
80
PkgType :: Clippy => false ,
83
81
PkgType :: Rustfmt => false ,
@@ -118,7 +116,6 @@ impl PkgType {
118
116
HtmlDocs => HOSTS ,
119
117
JsonDocs => HOSTS ,
120
118
RustSrc => & [ "*" ] ,
121
- Rls => HOSTS ,
122
119
RustAnalyzer => HOSTS ,
123
120
Clippy => HOSTS ,
124
121
Miri => HOSTS ,
Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ pub fn filter_dirs(path: &Path) -> bool {
32
32
"src/doc/rustc-dev-guide" ,
33
33
"src/doc/reference" ,
34
34
"src/gcc" ,
35
- // Filter RLS output directories
36
- "target/rls" ,
37
35
"src/bootstrap/target" ,
38
36
"vendor" ,
39
37
] ;
You can’t perform that action at this time.
0 commit comments