Unverified Commit c40b32d4 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

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

parents 182aa819 33d4ab86
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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
    ];
  };
})