remove rls specific parts from tidy and build-manifest
Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
parent
d3d7a6df54
commit
ac819aa924
3 changed files with 0 additions and 7 deletions
|
@ -386,7 +386,6 @@ impl Builder {
|
|||
// 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 @@ impl Builder {
|
|||
// 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 @@ pkg_type! {
|
|||
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 @@ impl PkgType {
|
|||
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 @@ impl PkgType {
|
|||
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",
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue