From 21ad642c45ac66684b414bf366458930580c51be Mon Sep 17 00:00:00 2001 From: extrawurst Date: Thu, 16 May 2024 11:14:35 +0200 Subject: [PATCH] fix cargo deny deprecation warnings --- deny.toml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/deny.toml b/deny.toml index d42a3f8dae..139cb9b0fb 100644 --- a/deny.toml +++ b/deny.toml @@ -1,10 +1,16 @@ [licenses] -unlicensed = "deny" -allow = ["MIT", "Apache-2.0", "BSD-2-Clause", "BSD-3-Clause", "CC0-1.0", "ISC", "MPL-2.0"] -copyleft = "warn" -default = "deny" +allow = [ + "MIT", + "Apache-2.0", + "BSD-2-Clause", + "BSD-3-Clause", + "CC0-1.0", + "ISC", + "MPL-2.0", +] [advisories] +version = 2 # No fix for RSA, and this is a dependency from ssh_key crate to handle rsa ssh key. # https://rustsec.org/advisories/RUSTSEC-2023-0071 ignore = ["RUSTSEC-2023-0071"]