Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 46911eb09195
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1a55b2b6b061
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 31, 2019

  1. cargo-audit: 0.9.3 -> 0.10.0

    0.10.0 (2019-10-13)
    
    * Upgrade rustsec to v0.16; new self-audit system (#155)
    * Upgrade to Abscissa v0.4; MSRV 1.36 (#154)
    basvandijk committed Oct 31, 2019
    Copy the full SHA
    e2b0849 View commit details
  2. Merge pull request #72356 from basvandijk/cargo-audit-0.10.0

    cargo-audit: 0.9.3 -> 0.10.0
    basvandijk authored Oct 31, 2019
    Copy the full SHA
    1a55b2b View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/package-management/cargo-audit/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/package-management/cargo-audit/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, openssl, pkg-config, Security, libiconv }:
rustPlatform.buildRustPackage rec {
pname = "cargo-audit";
version = "0.9.3";
version = "0.10.0";

src = fetchFromGitHub {
owner = "RustSec";
repo = "cargo-audit";
rev = "v${version}";
sha256 = "0yd3qj475hh394f1ya0hwki3pbzkfyz5cssy28cq9bimibxhyfd8";
sha256 = "1977ykablfi4mc6j2iil0bxc6diy07vi5hm56xmqj3n37ziavf1m";
};

cargoSha256 = "0ba4xrjrh8cbi4pksax3gs7jaiw5mrb9hdrdwaghkikmiza1c08g";
cargoSha256 = "0zbnsq0cif0yppn8ygxhcsrshkbf1c801f8waqqb2d1rjsrhb93y";

buildInputs = [ openssl libiconv ] ++ lib.optionals stdenv.isDarwin [ Security ];
nativeBuildInputs = [ pkg-config ];