summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-modules/default.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-07-07 21:07:35 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-07-07 21:07:35 +0000
commitfc6a7454afc6e11748cd76cb5691ee8ec2a40970 (patch)
tree629e9ae5d163ee052bcd9c3d338e80747385e3b8 /pkgs/development/tools/rust/cargo-modules/default.nix
parentf49fe4a120ac01b6157d91bf1c733319fec21459 (diff)
cargo-modules: 0.5.6 -> 0.5.9
Diffstat (limited to 'pkgs/development/tools/rust/cargo-modules/default.nix')
-rw-r--r--pkgs/development/tools/rust/cargo-modules/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/cargo-modules/default.nix b/pkgs/development/tools/rust/cargo-modules/default.nix
index 691661f595c42..3b833ae425222 100644
--- a/pkgs/development/tools/rust/cargo-modules/default.nix
+++ b/pkgs/development/tools/rust/cargo-modules/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-modules";
-  version = "0.5.6";
+  version = "0.5.9";
 
   src = fetchFromGitHub {
     owner = "regexident";
     repo = pname;
     rev = version;
-    sha256 = "sha256-bLljwxNrCmg1ZWfSninIxJIFIn2oHY8dmbHYPdwtD+M=";
+    sha256 = "sha256-7bcFKsKDp+DBOZRBrSOat+7AIShCgmasKItI8xcsaC0=";
   };
 
-  cargoSha256 = "sha256-heyVeQwEIOA9qtyXnHY8lPo06YgIUJaWCtaht9dWLoo=";
+  cargoSha256 = "sha256-CCjJq2ghAL6k7unPlZGYKKAxXfv05GIDivw/rbl2Wd4=";
 
   buildInputs = lib.optionals stdenv.isDarwin [
     CoreFoundation
@@ -23,7 +23,7 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/regexident/cargo-modules";
     license = with licenses; [ mpl20 ];
     # all tests fail with:
-    # thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: "tests run with disabled concurrency, automatic snapshot name generation is not supported.  Consider using the \"backtrace\" feature of insta which tries to recover test names from the call stack."', /private/tmp/nix-build-cargo-modules-0.5.6.drv-0/cargo-modules-0.5.6-vendor.tar.gz/insta/src/runtime.rs:908:22
+    # thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: "tests run with disabled concurrency, automatic snapshot name generation is not supported.  Consider using the \"backtrace\" feature of insta which tries to recover test names from the call stack."', /private/tmp/nix-build-cargo-modules-0.5.9.drv-0/cargo-modules-0.5.9-vendor.tar.gz/insta/src/runtime.rs:908:22
     broken = (stdenv.isDarwin && stdenv.isx86_64);
     maintainers = with maintainers; [ figsoda rvarago ];
   };