2022-11-03T01:07:38 cargo-audit 0.17.2 -> 0.17.3 https://repology.org/metapackage/cargo-audit/versions 2022-11-03T01:07:41 attrpath: cargo-audit 2022-11-03T01:07:41 Checking auto update branch... 2022-11-03T01:07:41 No auto update branch exists 2022-11-03T01:07:41 Old version 0.17.2" not present in master derivation file with contents: { lib , rustPlatform , fetchCrate , pkg-config , openssl , stdenv , Security }: rustPlatform.buildRustPackage rec { pname = "cargo-audit"; version = "0.17.3"; src = fetchCrate { inherit pname version; sha256 = "sha256-8L2E8Gj34n0aVfP3XVdm5+zHbHw7Ayg9Ptb/igdVr2U="; }; cargoSha256 = "sha256-h0MnJPD1zxkfAvcsrKuR5eJK68mXi+TIIZqutBiBEaM="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; buildFeatures = [ "fix" ]; # The tests require network access which is not available in sandboxed Nix builds. doCheck = false; meta = with lib; { description = "Audit Cargo.lock files for crates with security vulnerabilities"; homepage = "https://rustsec.org"; changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/v${version}/cargo-audit/CHANGELOG.md"; license = with licenses; [ mit /* or */ asl20 ]; maintainers = with maintainers; [ basvandijk figsoda jk ]; }; }