Merge pull request #148533 from figsoda/update-taplo-cli

taplo-cli: 0.4.1 -> 0.5.0

authored by Fabian Affolter and committed by GitHub 1083fd1d 7639c9ef

+4 -4
+4 -4
pkgs/development/tools/taplo-cli/default.nix
··· 1 - { fetchCrate, lib, openssl, pkg-config, rustPlatform, stdenv, Security }: 1 + { lib, rustPlatform, fetchCrate, stdenv, pkg-config, openssl, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "taplo-cli"; 5 - version = "0.4.1"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-bGQLAANVahpiiiKKJPNmtr4uT5iKHqyLS5yVm+rSHPg="; 9 + sha256 = "sha256-+0smR1FDeJMSa/LaRM2M53updt5p8717DEaFItNXCdM="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-T3fbG5HKOG90kawjQK8D0PIonB6ErNfR3hVIZ5N8zgA="; 12 + cargoSha256 = "sha256-d7mysGYR72shXwvmDXr0oftSa+RtRoSbP++HBR40Mus="; 13 13 14 14 nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; 15 15