Commit 03a050cb authored by İlkecan Bozdoğan's avatar İlkecan Bozdoğan
Browse files

cargo-vet: 0.10.1 -> 0.10.2

parent 46889458
Loading
Loading
Loading
Loading
+7 −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; [