From 4cf876f644c5cce5412e23dd9f936f2e02009e0f Mon Sep 17 00:00:00 2001 From: IAvecilla Date: Fri, 16 Feb 2024 10:28:13 -0300 Subject: [PATCH] Fix deny toml file --- node/deny.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/node/deny.toml b/node/deny.toml index 37f6ede5..6bda1f83 100644 --- a/node/deny.toml +++ b/node/deny.toml @@ -40,6 +40,18 @@ allow = [ "MPL-2.0", ] +[[licenses.clarify]] +name = "ring" +# SPDX considers OpenSSL to encompass both the OpenSSL and SSLeay licenses +# https://spdx.org/licenses/OpenSSL.html +# ISC - Both BoringSSL and ring use this for their new files +# MIT - "Files in third_party/ have their own licenses, as described therein. The MIT +# license, for third_party/fiat, which, unlike other third_party directories, is +# compiled into non-test libraries, is included below." +# OpenSSL - Obviously +expression = "MIT" +license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }] + [bans] # Lint level for when multiple versions of the same crate are detected multiple-versions = "deny" @@ -60,6 +72,9 @@ skip = [ { name = "base64", version = "0.13.1" }, { name = "block-buffer", version = "0.9.0" }, { name = "digest", version = "0.10.7" }, + + # Old versions required by kube. + { name = "strsim", version = "0.10.0" } ] [sources]