about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-02-12 08:33:59 -0500
committerGitHub <noreply@github.com>2022-02-12 08:33:59 -0500
commit0bf44cf7afe4ccb137d126ad37a0a83d7ab69744 (patch)
tree57c860357221a0970a077cfcec3bf57df24e44d6 /pkgs/development
parent074732d3bea897b3a22c572261d0650bfc8a25c3 (diff)
parent178ca7894803e5dfae650f9f7f946a6d24d1c03e (diff)
Merge pull request #159130 from r-ryantm/auto-update/cargo-insta
cargo-insta: 1.7.1 -> 1.11.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/rust/cargo-insta/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cargo-insta/default.nix b/pkgs/development/tools/rust/cargo-insta/default.nix
index 0c3773933545b..93593a01f5eeb 100644
--- a/pkgs/development/tools/rust/cargo-insta/default.nix
+++ b/pkgs/development/tools/rust/cargo-insta/default.nix
@@ -2,17 +2,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-insta";
-  version = "1.7.1";
+  version = "1.11.0";
 
   src = fetchFromGitHub {
     owner = "mitsuhiko";
     repo = "insta";
     rev = version;
-    sha256 = "1qzzkhailxjqwp3rmdcpp112wn3x0gfi788vwj77pfdyclhpj0a7";
+    sha256 = "sha256-Vi3FwetCpL8qMniaXypw1EYVHh6lfZu6GjDXPDKda5c=";
   };
 
   sourceRoot = "source/cargo-insta";
-  cargoSha256 = "01fj2j7ibrk5dyrfkmc610lh1p6f6bgzbgivq3dsd64vslhqmabw";
+  cargoSha256 = "sha256-Bjh9we0OD8kqMJtovO1yw9Yta5u93dlYMRsxPdErkaY=";
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
 
   meta = with lib; {