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

Use SPDX license format and update badges and formatting #44

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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions library/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
4 changes: 2 additions & 2 deletions library/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions library/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down