diff options
| author | Igor Matuszewski <xanewok@gmail.com> | 2021-07-21 21:08:39 +0200 |
|---|---|---|
| committer | Igor Matuszewski <xanewok@gmail.com> | 2021-07-21 21:08:39 +0200 |
| commit | 5fcb726f6c7133ef891ffcd4d7d2e9ce7dab87e6 (patch) | |
| tree | 8cfb7cbfb1d6a9d014c7c5398fbd6a9b6228745d | |
| parent | bf12f340eef82b696979be911305e9e306c4f284 (diff) | |
| download | rust-5fcb726f6c7133ef891ffcd4d7d2e9ce7dab87e6.tar.gz rust-5fcb726f6c7133ef891ffcd4d7d2e9ce7dab87e6.zip | |
Fix formatting in tidy exception list
| -rw-r--r-- | src/tools/tidy/src/deps.rs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index 54d67ca3742..32660ae2aee 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -26,18 +26,18 @@ const LICENSES: &[&str] = &[ /// tooling. It is _crucial_ that no exception crates be dependencies /// of the Rust runtime (std/test). const EXCEPTIONS: &[(&str, &str)] = &[ - ("mdbook", "MPL-2.0"), // mdbook - ("openssl", "Apache-2.0"), // cargo, mdbook - ("colored", "MPL-2.0"), // rustfmt - ("ordslice", "Apache-2.0"), // rls - ("ryu", "Apache-2.0 OR BSL-1.0"), // rls/cargo/... (because of serde) - ("bytesize", "Apache-2.0"), // cargo - ("im-rc", "MPL-2.0+"), // cargo - ("sized-chunks", "MPL-2.0+"), // cargo via im-rc - ("bitmaps", "MPL-2.0+"), // cargo via im-rc + ("mdbook", "MPL-2.0"), // mdbook + ("openssl", "Apache-2.0"), // cargo, mdbook + ("colored", "MPL-2.0"), // rustfmt + ("ordslice", "Apache-2.0"), // rls + ("ryu", "Apache-2.0 OR BSL-1.0"), // rls/cargo/... (because of serde) + ("bytesize", "Apache-2.0"), // cargo + ("im-rc", "MPL-2.0+"), // cargo + ("sized-chunks", "MPL-2.0+"), // cargo via im-rc + ("bitmaps", "MPL-2.0+"), // cargo via im-rc ("crossbeam-queue", "MIT/Apache-2.0 AND BSD-2-Clause"), // rls via rayon - ("instant", "BSD-3-Clause"), // rustc_driver/tracing-subscriber/parking_lot - ("snap", "BSD-3-Clause"), // rustc + ("instant", "BSD-3-Clause"), // rustc_driver/tracing-subscriber/parking_lot + ("snap", "BSD-3-Clause"), // rustc // FIXME: this dependency violates the documentation comment above: ("fortanix-sgx-abi", "MPL-2.0"), // libstd but only for `sgx` target ]; |
