Merge pull request #256909 from figsoda/insta

cargo-insta: 1.31.0 -> 1.32.0

authored by Matthias Beyer and committed by GitHub 9155f8dc 0f4c0e30

+4 -4
+4 -4
pkgs/development/tools/rust/cargo-insta/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "cargo-insta"; 8 - version = "1.31.0"; 8 + version = "1.32.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mitsuhiko"; 12 12 repo = "insta"; 13 13 rev = "refs/tags/${version}"; 14 - hash = "sha256-hQaVUBw8X60DW1Ox4GzO+OCWMHmVYuCkjH5x/sMULiE="; 14 + hash = "sha256-s6d0q4K2UTG+BWzvH5KOAllzYAkEapEuDoiI9KQW31I="; 15 15 }; 16 16 17 17 sourceRoot = "${src.name}/cargo-insta"; 18 18 19 - cargoHash = "sha256-q6Ups4SDGjT5Zc9ujhRpRdh3uWq99lizgA7gpPVSl+A="; 19 + cargoHash = "sha256-ZQUzoKE3OGaY22VYiku7GqjGN9jUNx09a0EcgCRzzcM="; 20 20 21 21 meta = with lib; { 22 22 description = "A Cargo subcommand for snapshot testing"; 23 23 homepage = "https://github.com/mitsuhiko/insta"; 24 24 changelog = "https://github.com/mitsuhiko/insta/blob/${version}/CHANGELOG.md"; 25 25 license = licenses.asl20; 26 - maintainers = with lib.maintainers; [ figsoda oxalica matthiasbeyer ]; 26 + maintainers = with maintainers; [ figsoda oxalica matthiasbeyer ]; 27 27 }; 28 28 }