File tree 1 file changed +0
-15
lines changed 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -244,13 +244,6 @@ fn check_exceptions(metadata: &Metadata, bad: &mut bool) {
244
244
}
245
245
// Check that the license hasn't changed.
246
246
for pkg in metadata. packages . iter ( ) . filter ( |p| p. name == * name) {
247
- if pkg. name == "fuchsia-cprng" {
248
- // This package doesn't declare a license expression. Manual
249
- // inspection of the license file is necessary, which appears
250
- // to be BSD-3-Clause.
251
- assert ! ( pkg. license. is_none( ) ) ;
252
- continue ;
253
- }
254
247
match & pkg. license {
255
248
None => {
256
249
tidy_error ! (
@@ -261,14 +254,6 @@ fn check_exceptions(metadata: &Metadata, bad: &mut bool) {
261
254
}
262
255
Some ( pkg_license) => {
263
256
if pkg_license. as_str ( ) != * license {
264
- if * name == "crossbeam-queue"
265
- && * license == "MIT/Apache-2.0 AND BSD-2-Clause"
266
- {
267
- // We have two versions of crossbeam-queue and both
268
- // are fine.
269
- continue ;
270
- }
271
-
272
257
println ! ( "dependency exception `{}` license has changed" , name) ;
273
258
println ! ( " previously `{}` now `{}`" , license, pkg_license) ;
274
259
println ! ( " update EXCEPTIONS for the new license" ) ;
You can’t perform that action at this time.
0 commit comments