about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-09-28 08:34:12 +0200
committerGitHub <noreply@github.com>2023-09-28 08:34:12 +0200
commita9f6c4e42df9296e3994fdf1f6af9ec99ec385bc (patch)
tree60c8e7dbd29b455fa30beb87cc1f4c442eee4163 /pkgs/development/tools/rust
parent70e21424edfb4450ca5cc4738c4b538ef2e43c68 (diff)
parent13ce0ba52543740e17069f7aeae5a5c43e0b7a66 (diff)
downloadnixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.tar
nixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.tar.gz
nixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.tar.bz2
nixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.tar.lz
nixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.tar.xz
nixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.tar.zst
nixlib-a9f6c4e42df9296e3994fdf1f6af9ec99ec385bc.zip
Merge pull request #257724 from figsoda/nextest
cargo-nextest: 0.9.58 -> 0.9.59
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cargo-nextest/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cargo-nextest/default.nix b/pkgs/development/tools/rust/cargo-nextest/default.nix
index c4e87e9d670a..0dc2a708afe3 100644
--- a/pkgs/development/tools/rust/cargo-nextest/default.nix
+++ b/pkgs/development/tools/rust/cargo-nextest/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-nextest";
-  version = "0.9.58";
+  version = "0.9.59";
 
   src = fetchFromGitHub {
     owner = "nextest-rs";
     repo = "nextest";
     rev = "cargo-nextest-${version}";
-    hash = "sha256-D3mSDh6IliKbtxitMRXy1L4YH/qZfdXtXiPvf45mTno=";
+    hash = "sha256-32n1z5e40qkhHBAbwGhXa7L5NfkkN72AIKF796y82+g=";
   };
 
-  cargoHash = "sha256-TjQHSaBVM4pJoTp6Vdz6WGWIyw5uC6UG7Wle6LsXP+4=";
+  cargoHash = "sha256-sme7VE5JnjIWONaFYIOnv72UjUC/S+VezNSmRunmDv0=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];