From e2277ef23c43e3b2f7f0b4804db3e285c6514e63 Mon Sep 17 00:00:00 2001 From: Alex Touchet Date: Sun, 13 Mar 2022 22:40:10 -0700 Subject: [PATCH] Use SPDX license format and update badges and formatting --- README.md | 8 ++++---- library/Cargo.toml | 4 ++-- library/README.md | 4 ++-- library/src/lib.rs | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dcb875591f8..f4e5a35ce71 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ the library, and to the source code of the binary crate for usage hints. ## The Web part Under the `web` directory you will find a binary crate that's capable of -producing web-pages like +producing web pages like [https://rust-lang.github.io/rustup-components-history/](https://rust-lang.github.io/rustup-components-history/). -Machine-readable information on the latests availability can be fetched on a +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 @@ -43,8 +43,8 @@ More info is coming :) Licensed under either of - * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) - * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) + * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0) + * MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT) at your option. diff --git a/library/Cargo.toml b/library/Cargo.toml index 810e63b2b41..ebc33771dc3 100644 --- a/library/Cargo.toml +++ b/library/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "rustup-available-packages" version = "0.2.1" -description = "Rustup tools state info" -license = "MIT/Apache-2.0" +description = "rustup tools state info" +license = "MIT OR Apache-2.0" keywords = ["rustup"] repository = "https://github.com/rust-lang/rustup-components-history" documentation = "https://docs.rs/rustup-available-packages/" diff --git a/library/README.md b/library/README.md index c12f1c6d120..babbe488176 100644 --- a/library/README.md +++ b/library/README.md @@ -1,10 +1,10 @@ # rustup-available-packages -[![Travis CI badge](https://api.travis-ci.com/rust-lang/rustup-components-history.svg?branch=master)](https://travis-ci.com/github/rust-lang/rustup-components-history) +[![CI badge](https://github.com/rust-lang/rustup-components-history/workflows/Rust/badge.svg)](https://github.com/rust-lang/rustup-components-history/actions) [![crates.io](https://img.shields.io/crates/v/rustup-available-packages.svg)](https://crates.io/crates/rustup-available-packages) [![docs.rs](https://docs.rs/rustup-available-packages/badge.svg)](https://docs.rs/rustup-available-packages) -[[Release docs]](https://docs.rs/rustup-available-packages/) +[Release docs](https://docs.rs/rustup-available-packages/) A library that helps you to find out which packages are available in your **rustup** tool for specific dates and targets. diff --git a/library/src/lib.rs b/library/src/lib.rs index fbb1fdd8ac2..578c0177890 100644 --- a/library/src/lib.rs +++ b/library/src/lib.rs @@ -1,8 +1,8 @@ -//! [![Travis CI badge](https://api.travis-ci.com/rust-lang/rustup-components-history.svg?branch=master)](https://travis-ci.com/github/rust-lang/rustup-components-history) +//! [![CI badge](https://github.com/rust-lang/rustup-components-history/workflows/Rust/badge.svg)](https://github.com/rust-lang/rustup-components-history/actions) //! [![crates.io](https://img.shields.io/crates/v/rustup-available-packages.svg)](https://crates.io/crates/rustup-available-packages) //! [![docs.rs](https://docs.rs/rustup-available-packages/badge.svg)](https://docs.rs/rustup-available-packages) //! -//! [[Release docs]](https://docs.rs/rustup-available-packages/) +//! [Release docs](https://docs.rs/rustup-available-packages/) //! //! A library that helps you to find out which packages are available in your **rustup** tool for //! specific dates and targets.