summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-09-23 11:02:23 -0400
committerfigsoda <figsoda@pm.me>2023-09-23 11:02:23 -0400
commitb4349358c9d666e977ecd3fc4b6cb4032ff15152 (patch)
treec5fa2f16162f7c9766dafdeadc2caa27a2d333ed
parent764241c83f5d3538695cb64bf5fa2f49606dcc67 (diff)
downloadnixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.tar
nixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.tar.gz
nixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.tar.bz2
nixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.tar.lz
nixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.tar.xz
nixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.tar.zst
nixpkgs-b4349358c9d666e977ecd3fc4b6cb4032ff15152.zip
cargo-insta: 1.31.0 -> 1.32.0
Diff: https://github.com/mitsuhiko/insta/compare/refs/tags/1.31.0...1.32.0

Changelog: https://github.com/mitsuhiko/insta/blob/1.32.0/CHANGELOG.md
-rw-r--r--pkgs/development/tools/rust/cargo-insta/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/cargo-insta/default.nix b/pkgs/development/tools/rust/cargo-insta/default.nix
index 5db787197a1..18842a94a99 100644
--- a/pkgs/development/tools/rust/cargo-insta/default.nix
+++ b/pkgs/development/tools/rust/cargo-insta/default.nix
@@ -5,24 +5,24 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-insta";
-  version = "1.31.0";
+  version = "1.32.0";
 
   src = fetchFromGitHub {
     owner = "mitsuhiko";
     repo = "insta";
     rev = "refs/tags/${version}";
-    hash = "sha256-hQaVUBw8X60DW1Ox4GzO+OCWMHmVYuCkjH5x/sMULiE=";
+    hash = "sha256-s6d0q4K2UTG+BWzvH5KOAllzYAkEapEuDoiI9KQW31I=";
   };
 
   sourceRoot = "${src.name}/cargo-insta";
 
-  cargoHash = "sha256-q6Ups4SDGjT5Zc9ujhRpRdh3uWq99lizgA7gpPVSl+A=";
+  cargoHash = "sha256-ZQUzoKE3OGaY22VYiku7GqjGN9jUNx09a0EcgCRzzcM=";
 
   meta = with lib; {
     description = "A Cargo subcommand for snapshot testing";
     homepage = "https://github.com/mitsuhiko/insta";
     changelog = "https://github.com/mitsuhiko/insta/blob/${version}/CHANGELOG.md";
     license = licenses.asl20;
-    maintainers = with lib.maintainers; [ figsoda oxalica matthiasbeyer ];
+    maintainers = with maintainers; [ figsoda oxalica matthiasbeyer ];
   };
 }