about summary refs log tree commit diff
path: root/src/bootstrap/lib.rs
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2022-08-20 21:19:43 -0700
committerEric Huss <eric@huss.org>2022-08-27 21:36:08 -0700
commit4a7e2fbb7bfdb7ddcb65b6fcf23bb5b272e66d42 (patch)
treebb2f39474cc03d3f78f5838297432a2a6a9e301d /src/bootstrap/lib.rs
parent1e978a3627bd65064164af3548c585fb25eef9d2 (diff)
downloadrust-4a7e2fbb7bfdb7ddcb65b6fcf23bb5b272e66d42.tar.gz
rust-4a7e2fbb7bfdb7ddcb65b6fcf23bb5b272e66d42.zip
Sunset RLS
Diffstat (limited to 'src/bootstrap/lib.rs')
-rw-r--r--src/bootstrap/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs
index dcfa92d1004..30ea1c20b31 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -273,7 +273,6 @@ pub struct Build {
     bootstrap_out: PathBuf,
     rust_info: channel::GitInfo,
     cargo_info: channel::GitInfo,
-    rls_info: channel::GitInfo,
     rust_analyzer_info: channel::GitInfo,
     clippy_info: channel::GitInfo,
     miri_info: channel::GitInfo,
@@ -407,7 +406,6 @@ impl Build {
         let ignore_git = config.ignore_git;
         let rust_info = channel::GitInfo::new(ignore_git, &src);
         let cargo_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/cargo"));
-        let rls_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rls"));
         let rust_analyzer_info =
             channel::GitInfo::new(ignore_git, &src.join("src/tools/rust-analyzer"));
         let clippy_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/clippy"));
@@ -485,7 +483,6 @@ impl Build {
 
             rust_info,
             cargo_info,
-            rls_info,
             rust_analyzer_info,
             clippy_info,
             miri_info,