Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove rls #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

```
Expand Down
9 changes: 0 additions & 9 deletions library/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
"#;
Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion web/src/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading