Annotate the license exceptions

This commit is contained in:
Brian Anderson 2017-05-11 19:19:21 +00:00
parent 2cc3358e4f
commit 084b67f56a

View File

@ -23,12 +23,15 @@ static LICENSES: &'static [&'static str] = &[
"Unlicense/MIT",
];
/// These MPL licensed projects are acceptable, but only these.
// These are exceptions to Rust's permissive licensing policy, and
// should be considered bugs. Exceptions are only allowed in Rust
// tooling. It is _crucial_ that no exception crates be dependencies
// of the Rust runtime (std / test).
static EXCEPTIONS: &'static [&'static str] = &[
"mdbook",
"openssl",
"pest",
"thread-id",
"mdbook", // MPL2, mdbook
"openssl", // BSD+advertising clause, cargo, mdbook
"pest", // MPL2, mdbook via handlebars
"thread-id", // Apache-2.0, mdbook
];
pub fn check(path: &Path, bad: &mut bool) {