mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
remove rls specific parts from tidy and build-manifest
Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
@@ -386,7 +386,6 @@ fn add_profiles_to(&mut self, manifest: &mut Manifest) {
|
||||
// NOTE: this profile is effectively deprecated; do not add new components to it.
|
||||
let mut complete = default;
|
||||
complete.extend([
|
||||
Rls,
|
||||
RustAnalyzer,
|
||||
RustSrc,
|
||||
LlvmTools,
|
||||
@@ -475,7 +474,6 @@ fn target_host_combination(&mut self, host: &str, manifest: &Manifest) -> Option
|
||||
// but might be marked as unavailable if they weren't built.
|
||||
PkgType::Clippy
|
||||
| PkgType::Miri
|
||||
| PkgType::Rls
|
||||
| PkgType::RustAnalyzer
|
||||
| PkgType::Rustfmt
|
||||
| PkgType::LlvmTools
|
||||
|
||||
@@ -51,7 +51,6 @@ pub(crate) fn all() -> &'static [PkgType] {
|
||||
Cargo = "cargo",
|
||||
HtmlDocs = "rust-docs",
|
||||
RustAnalysis = "rust-analysis",
|
||||
Rls = "rls"; preview = true,
|
||||
RustAnalyzer = "rust-analyzer"; preview = true,
|
||||
Clippy = "clippy"; preview = true,
|
||||
Rustfmt = "rustfmt"; preview = true,
|
||||
@@ -77,7 +76,6 @@ pub(crate) fn manifest_component_name(&self) -> String {
|
||||
fn should_use_rust_version(&self) -> bool {
|
||||
match self {
|
||||
PkgType::Cargo => false,
|
||||
PkgType::Rls => false,
|
||||
PkgType::RustAnalyzer => false,
|
||||
PkgType::Clippy => false,
|
||||
PkgType::Rustfmt => false,
|
||||
@@ -118,7 +116,6 @@ pub(crate) fn targets(&self) -> &[&str] {
|
||||
HtmlDocs => HOSTS,
|
||||
JsonDocs => HOSTS,
|
||||
RustSrc => &["*"],
|
||||
Rls => HOSTS,
|
||||
RustAnalyzer => HOSTS,
|
||||
Clippy => HOSTS,
|
||||
Miri => HOSTS,
|
||||
|
||||
@@ -32,8 +32,6 @@ pub fn filter_dirs(path: &Path) -> bool {
|
||||
"src/doc/rustc-dev-guide",
|
||||
"src/doc/reference",
|
||||
"src/gcc",
|
||||
// Filter RLS output directories
|
||||
"target/rls",
|
||||
"src/bootstrap/target",
|
||||
"vendor",
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user