From f0dd8da86c0fcc82935eff7478a486b329f66ac4 Mon Sep 17 00:00:00 2001 From: zuub-don Date: Fri, 6 Mar 2026 16:59:11 -0800 Subject: [PATCH] ci: fix cargo-deny v2 config compatibility (#95) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove deprecated `vulnerability`, `unmaintained`, `yanked` fields from [advisories] (removed in cargo-deny 0.16+) - Fix SPDX identifier: BSL-1.1 → BUSL-1.1 (Business Source License 1.1) Closes #95 Co-Authored-By: Claude Opus 4.6 --- Cargo.toml | 2 +- deny.toml | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4c35daa..142ea7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ members = [ version = "0.1.0" edition = "2021" rust-version = "1.75.0" -license = "BSL-1.1" +license = "BUSL-1.1" repository = "https://github.com/copyleftdev/gashammer" authors = ["Don Johnson "] diff --git a/deny.toml b/deny.toml index 25d18d6..f28e102 100644 --- a/deny.toml +++ b/deny.toml @@ -1,7 +1,4 @@ [advisories] -vulnerability = "deny" -unmaintained = "warn" -yanked = "warn" ignore = [] [licenses] @@ -13,7 +10,7 @@ allow = [ "ISC", "Unicode-3.0", "Unicode-DFS-2016", - "BSL-1.1", + "BUSL-1.1", "OpenSSL", "Zlib", "MPL-2.0",