From 689f07cb79751c3ff75ff10b876071e255d63df4 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 3 Apr 2023 15:13:21 -0700 Subject: [PATCH] cargo-deny: allow the MPL-2.0 and OpenSSL licenses (#6136) * cargo-deny: allow the MPL-2.0 and OpenSSL licenses These are required in order to merge https://github.com/bytecodealliance/wasmtime/pull/5929. * deny.toml: add clarification of license for `ring` --- deny.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/deny.toml b/deny.toml index 435939f701..9863e0d28e 100644 --- a/deny.toml +++ b/deny.toml @@ -17,9 +17,18 @@ allow = [ "BSD-3-Clause", "ISC", "MIT", + "MPL-2.0", + "OpenSSL", "Zlib", ] +[[licenses.clarify]] +name = "ring" +expression = "MIT AND ISC AND OpenSSL" +license-files = [ + { path = "LICENSE", hash = 0xbd0eed23 } +] + # https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html [bans] multiple-versions = "deny"