File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,15 @@ static LICENSES: &'static [&'static str] = &[
23
23
"Unlicense/MIT" ,
24
24
] ;
25
25
26
- /// These MPL licensed projects are acceptable, but only these.
26
+ // These are exceptions to Rust's permissive licensing policy, and
27
+ // should be considered bugs. Exceptions are only allowed in Rust
28
+ // tooling. It is _crucial_ that no exception crates be dependencies
29
+ // of the Rust runtime (std / test).
27
30
static EXCEPTIONS : & ' static [ & ' static str ] = & [
28
- "mdbook" ,
29
- "openssl" ,
30
- "pest" ,
31
- "thread-id" ,
31
+ "mdbook" , // MPL2, mdbook
32
+ "openssl" , // BSD+advertising clause, cargo, mdbook
33
+ "pest" , // MPL2, mdbook via handlebars
34
+ "thread-id" , // Apache-2.0, mdbook
32
35
] ;
33
36
34
37
pub fn check ( path : & Path , bad : & mut bool ) {
You can’t perform that action at this time.
0 commit comments