From d3d388a11ebd9e05801e0299d625cd1ed3ebada4 Mon Sep 17 00:00:00 2001 From: onur-ozkan Date: Mon, 12 Aug 2024 17:14:44 +0300 Subject: [PATCH] remove `rls` Signed-off-by: onur-ozkan --- README.md | 2 +- library/src/manifest.rs | 9 --------- web/src/opts.rs | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 7e8d7cf88cc..2b12e8e3113 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Machine-readable information on the latest availability can be fetched on a *per-component-per-target* basis, i.e. `https://rust-lang.github.io/rustup-components-history/$target/$package` where `$target` stands for a target host architecture, like `x86_64-unknown-linux-gnu`, and `$package` stands for a package -name, like `rls` or `rust-src`. For example, getting the date when `miri` was available for the last +name, like `miri` or `rust-src`. For example, getting the date when `miri` was available for the last time on `x86_64-apple-darwin` is as simple as running the following command: ``` diff --git a/library/src/manifest.rs b/library/src/manifest.rs index 8f3ee38c412..b88eedc3531 100644 --- a/library/src/manifest.rs +++ b/library/src/manifest.rs @@ -97,9 +97,6 @@ available = false [pkg.rustfmt-preview.target.x86_64-unknown-linux-gnu] available = true -[renames.rls] -to = "rls-preview" - [renames.rustfmt] to = "rustfmt-preview" "#; @@ -153,12 +150,6 @@ to = "rustfmt-preview" .into_iter() .collect(), renames: vec![ - ( - "rls".to_string(), - Rename { - to: "rls-preview".to_string(), - }, - ), ( "rustfmt".to_string(), Rename { diff --git a/web/src/opts.rs b/web/src/opts.rs index 5cc612bc38e..a679d90b46e 100644 --- a/web/src/opts.rs +++ b/web/src/opts.rs @@ -72,7 +72,7 @@ pub struct Config { /// will generate a set of files under a given *output* directory with the /// following pattern: file_tree_output/$target/$package, where $target /// stands for a target host architecture, like x86_64-unknown-linux-gnu, - /// and $package stands for a package name, like rls or rust-src. Each of + /// and $package stands for a package name, like miri or rust-src. Each of /// those files will contain a date in a "%Y-%m-%d" format (e.g. 2019-12-24) /// which represents the latest date when the package was (is) available for /// that specific target.