From 9b9d05cf92a0bc38c32e9ddf97dec795eda3fe0a Mon Sep 17 00:00:00 2001 From: Johannes Date: Sun, 25 Aug 2024 12:36:33 +0200 Subject: [PATCH] Update deny.toml --- deny.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deny.toml b/deny.toml index d42e157f..bc8a0789 100644 --- a/deny.toml +++ b/deny.toml @@ -1,8 +1,9 @@ +[graph] targets = [ - { triple = "x86_64-unknown-linux-gnu" }, - { triple = "x86_64-unknown-linux-musl" }, - { triple = "x86_64-apple-darwin" }, - { triple = "x86_64-pc-windows-msvc" }, + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", ] [advisories] @@ -10,7 +11,6 @@ yanked = "deny" ignore = [] [licenses] -unlicensed = "deny" # We want really high confidence when inferring licenses from text confidence-threshold = 0.93 allow = ["MIT", "BSD-3-Clause", "Apache-2.0"]