Skip to content

Commit 27ec7b7

Browse files
committed
remove rls specific parts from tidy and build-manifest
Signed-off-by: onur-ozkan <[email protected]>
1 parent d9a52d8 commit 27ec7b7

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/tools/build-manifest/src/main.rs

-2
Original file line numberDiff line numberDiff 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

src/tools/build-manifest/src/versions.rs

-3
Original file line numberDiff line numberDiff 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,

src/tools/tidy/src/walk.rs

-2
Original file line numberDiff line numberDiff 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
];

0 commit comments

Comments
 (0)