From c6f8398f8f09801780827f6cbf9bc1cd35451c75 Mon Sep 17 00:00:00 2001 From: xdustinface Date: Fri, 12 Dec 2025 11:52:08 +1100 Subject: [PATCH 1/2] fix: add missing license fields for cargo-deny audit Adds `license = "CC0-1.0"` to `fuzz/Cargo.toml` and `rpc-integration-test/Cargo.toml` to pass cargo-deny license checks added in the CI overhaul PR #253. --- fuzz/Cargo.toml | 1 + rpc-integration-test/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 30bc6e224..0f52e5294 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -3,6 +3,7 @@ name = "dash-fuzz" edition = "2024" version = { workspace = true} authors = ["Generated by fuzz/generate-files.sh"] +license = "CC0-1.0" publish = false [profile.release] diff --git a/rpc-integration-test/Cargo.toml b/rpc-integration-test/Cargo.toml index 6c1cd9bc7..8cb51b36b 100644 --- a/rpc-integration-test/Cargo.toml +++ b/rpc-integration-test/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "integration_test" authors = ["Steven Roose "] +license = "CC0-1.0" edition = "2024" publish = false From bf6389a5a4db9121bd35b8829c808c094349319b Mon Sep 17 00:00:00 2001 From: xdustinface Date: Sat, 27 Dec 2025 11:38:02 +0100 Subject: [PATCH 2/2] fix: add license field to fuzz Cargo.toml template --- fuzz/generate-files.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/fuzz/generate-files.sh b/fuzz/generate-files.sh index f67b565fd..5e29c82c1 100755 --- a/fuzz/generate-files.sh +++ b/fuzz/generate-files.sh @@ -14,6 +14,7 @@ name = "dash-fuzz" edition = "2024" version = "0.0.1" authors = ["Generated by fuzz/generate-files.sh"] +license = "CC0-1.0" publish = false [package.metadata]