cargo-vet: 0.10.1 -> 0.10.2, add ilkecan to maintainers (#506349)

This commit is contained in:
Nick Cao
2026-04-06 20:29:07 +00:00
committed by GitHub
+8 -3
View File
@@ -2,26 +2,30 @@
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cargo-vet";
version = "0.10.1";
version = "0.10.2";
src = fetchFromGitHub {
owner = "mozilla";
repo = "cargo-vet";
tag = "v${finalAttrs.version}";
hash = "sha256-HSEhFCcdC79OA8MP73De+iLIjcr1XMHxfJ9a1Q3JJYI=";
hash = "sha256-sdjvCMLM8ThWXbotjRIsbLYucDzGvFOktqo6OKB//RI=";
};
cargoHash = "sha256-+X6DLxWPWMcGzJMVZAj3C5P5MyywIb4ml0Jsyo9/uAE=";
cargoHash = "sha256-3pfOq2VfHbtohdgv73TT480bjCjdNKPJE+m4SHeXfGA=";
# the test_project tests require internet access
checkFlags = [ "--skip=test_project" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Tool to help projects ensure that third-party Rust dependencies have been audited by a trusted source";
changelog = "https://github.com/mozilla/cargo-vet/releases/tag/v${finalAttrs.version}";
mainProgram = "cargo-vet";
homepage = "https://mozilla.github.io/cargo-vet";
license = with lib.licenses; [
@@ -31,6 +35,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
maintainers = with lib.maintainers; [
jk
matthiasbeyer
ilkecan
];
};
})