From 9879bb8b0be2e2df03270f17d9e5c376e002f9f6 Mon Sep 17 00:00:00 2001 From: Elias Wilken Date: Thu, 26 Oct 2023 12:56:34 +0200 Subject: [PATCH] add an exception with explanation for the MPL-2.0 of webpki-roots to cargo-deny Signed-off-by: Elias Wilken --- deny.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 412869204..9a7a202f6 100644 --- a/deny.toml +++ b/deny.toml @@ -50,8 +50,11 @@ exceptions = [ # included in the application. We do not distribute those data files so # this is not a problem for us. See https://github.com/dtolnay/unicode-ident/pull/9/files # for more details. - { allow = ["Unicode-DFS-2016"], name = "unicode-ident" } + { allow = ["Unicode-DFS-2016"], name = "unicode-ident" }, + # Using the WebPKI roots for rustls is an optional feature that is off by default, + # so it's up to the user whether to pull in the MPL-2.0 license. + { allow = ["MPL-2.0"], name = "webpki-roots" }, ] [[licenses.clarify]]