summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-audit
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-11-01 22:56:54 -0400
committerfigsoda <figsoda@pm.me>2022-11-01 22:56:54 -0400
commitf59df4069f18a58d2d080a7ee66031f0c1c60109 (patch)
treebb9c13431ea73b97a7100b86cb746a750075d6bf /pkgs/development/tools/rust/cargo-audit
parentd17013ea9e243628d00262e56b0f38922b278455 (diff)
cargo-audit: 0.17.2 -> 0.17.3
Diffstat (limited to 'pkgs/development/tools/rust/cargo-audit')
-rw-r--r--pkgs/development/tools/rust/cargo-audit/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/cargo-audit/default.nix b/pkgs/development/tools/rust/cargo-audit/default.nix
index 9489797ac176b..9dcf6b22d530a 100644
--- a/pkgs/development/tools/rust/cargo-audit/default.nix
+++ b/pkgs/development/tools/rust/cargo-audit/default.nix
@@ -9,14 +9,14 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-audit";
-  version = "0.17.2";
+  version = "0.17.3";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-fSdh8yCV+2AdAtF4eO2z8+uxOAf2N0IxqIFLw4B8dKE=";
+    sha256 = "sha256-8L2E8Gj34n0aVfP3XVdm5+zHbHw7Ayg9Ptb/igdVr2U=";
   };
 
-  cargoSha256 = "sha256-YCEQaUcTmZ9zTdGcDQkaVI0Dc8oIBvt840s3x9PUlrg=";
+  cargoSha256 = "sha256-h0MnJPD1zxkfAvcsrKuR5eJK68mXi+TIIZqutBiBEaM=";
 
   nativeBuildInputs = [
     pkg-config
@@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
     Security
   ];
 
-  buildFeatures = [ "binary-scanning" "fix" ];
+  buildFeatures = [ "fix" ];
 
   # The tests require network access which is not available in sandboxed Nix builds.
   doCheck = false;