From fd71dfdcfc4e6bd5c4ef64a45d545fb94c94d8d2 Mon Sep 17 00:00:00 2001 From: GunnarMorrigan <13799935+GunnarMorrigan@users.noreply.github.com> Date: Thu, 28 Nov 2024 01:26:13 +0100 Subject: [PATCH] update cargo deny --- deny.toml | 3 +-- examples/tcp/Cargo.toml | 1 + fuzz/Cargo.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index ee3595b..acabff1 100644 --- a/deny.toml +++ b/deny.toml @@ -2,11 +2,10 @@ [licenses] confidence-threshold = 0.95 -allow = ["MPL-2.0", "Apache-2.0", "MIT", "BSD-3-Clause", "ISC", "Unicode-3.0"] +allow = ["MPL-2.0", "Apache-2.0", "MIT", "Unicode-3.0"] exceptions = [ { allow = ["Unicode-DFS-2016"], name = "unicode-ident" }, - { allow = ["OpenSSL"], name = "ring" } ] [[licenses.clarify]] diff --git a/examples/tcp/Cargo.toml b/examples/tcp/Cargo.toml index 78834ec..b42bc70 100644 --- a/examples/tcp/Cargo.toml +++ b/examples/tcp/Cargo.toml @@ -2,6 +2,7 @@ name = "tcp" version = "0.1.0" edition = "2021" +license = "MIT" [dependencies] smol = { version = "2" } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index adb4c3e..efee995 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -3,6 +3,7 @@ name = "mqrstt-fuzz" version = "0.0.0" publish = false edition = "2021" +license = "MIT" [package.metadata] cargo-fuzz = true