Skip to content

Commit db233b0

Browse files
committed
Auto merge of #4616 - mati865:license, r=Manishearth
Fix license in Cargo.toml files Missed in #3269 changelog: none r? @Manishearth
2 parents 0583181 + 4f1d907 commit db233b0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
1212
repository = "https://github.com/rust-lang/rust-clippy"
1313
readme = "README.md"
14-
license = "MIT/Apache-2.0"
14+
license = "MIT OR Apache-2.0"
1515
keywords = ["clippy", "lint", "plugin"]
1616
categories = ["development-tools", "development-tools::cargo-plugins"]
1717
build = "build.rs"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.com/rust-lang/rust-clippy.svg?branch=master)](https://travis-ci.com/rust-lang/rust-clippy)
44
[![Windows Build status](https://ci.appveyor.com/api/projects/status/id677xpw1dguo7iw?svg=true)](https://ci.appveyor.com/project/rust-lang-libs/rust-clippy)
5-
[![License: MIT/Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license)
5+
[![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license)
66

77
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
88

clippy_dummy/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build = 'build.rs'
99

1010
repository = "https://github.com/rust-lang/rust-clippy"
1111

12-
license = "MIT/Apache-2.0"
12+
license = "MIT OR Apache-2.0"
1313
keywords = ["clippy", "lint", "plugin"]
1414
categories = ["development-tools", "development-tools::cargo-plugins"]
1515

clippy_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
1313
repository = "https://github.com/rust-lang/rust-clippy"
1414
readme = "README.md"
15-
license = "MPL-2.0"
15+
license = "MIT OR Apache-2.0"
1616
keywords = ["clippy", "lint", "plugin"]
1717
edition = "2018"
1818

clippy_lints/src/cargo_common_metadata.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ declare_clippy_lint! {
2727
/// description = "A bunch of helpful lints to avoid common pitfalls in Rust"
2828
/// repository = "https://github.com/rust-lang/rust-clippy"
2929
/// readme = "README.md"
30-
/// license = "MIT/Apache-2.0"
30+
/// license = "MIT OR Apache-2.0"
3131
/// keywords = ["clippy", "lint", "plugin"]
3232
/// categories = ["development-tools", "development-tools::cargo-plugins"]
3333
/// ```

mini-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
"Martin Carton <[email protected]>",
99
"Oliver Schneider <[email protected]>"
1010
]
11-
license = "MPL-2.0"
11+
license = "MIT OR Apache-2.0"
1212
description = "A macro to test clippy's procedural macro checks"
1313
repository = "https://github.com/rust-lang/rust-clippy"
1414
edition = "2018"

rustc_tools_util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Matthias Krüger <[email protected]>"]
55
description = "small helper to generate version information for git packages"
66
repository = "https://github.com/rust-lang/rust-clippy"
77
readme = "README.md"
8-
license = "MIT/Apache-2.0"
8+
license = "MIT OR Apache-2.0"
99
keywords = ["rustc", "tool", "git", "version", "hash"]
1010
categories = ["development-tools"]
1111
edition = "2018"

0 commit comments

Comments
 (0)