diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index bbfab388950..43726ea1c43 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -1048,6 +1048,11 @@ impl Build { self.package_vers(&self.release_num("cargo")) } + /// Returns the value of `package_vers` above for rls + fn rls_package_vers(&self) -> String { + self.package_vers(&self.release_num("rls")) + } + /// Returns the `version` string associated with this compiler for Rust /// itself. ///