From 5e9d5204e3bdcb9aa120d2ce2b7c4cf78b593de5 Mon Sep 17 00:00:00 2001 From: tottoto Date: Tue, 5 Nov 2024 20:45:37 +0900 Subject: [PATCH] chore: Replace name field with crate in cargo-deny config (#2032) --- deny.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/deny.toml b/deny.toml index f58882646..738b4b9ec 100644 --- a/deny.toml +++ b/deny.toml @@ -5,22 +5,22 @@ all-features = true multiple-versions = "deny" deny = [ # color-backtrace is nice but brings in too many dependencies and that are often outdated, so not worth it for us. - { name = "color-backtrace" }, + { crate = "color-backtrace" }, # dirs crate has a lot of dependencies and there are better alternatives - { name = "dirs" }, - { name = "dirs-sys" }, + { crate = "dirs" }, + { crate = "dirs-sys" }, # deprecated - { name = "quickersort" }, + { crate = "quickersort" }, # term is not fully maintained, and termcolor is replacing it - { name = "term" }, + { crate = "term" }, ] skip-tree = [ - { name = "windows-sys" }, - { name = "hermit-abi" }, - { name = "examples" }, + { crate = "windows-sys" }, + { crate = "hermit-abi" }, + { crate = "examples" }, ] [licenses] @@ -39,7 +39,7 @@ allow = [ ] [[licenses.clarify]] -name = "ring" +crate = "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