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

taplo-cli: 0.4.1 -> 0.5.0
This commit is contained in:
Fabian Affolter 2021-12-04 11:17:50 +01:00 committed by GitHub
commit 1083fd1d97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,15 @@
{ fetchCrate, lib, openssl, pkg-config, rustPlatform, stdenv, Security }:
{ lib, rustPlatform, fetchCrate, stdenv, pkg-config, openssl, Security }:
rustPlatform.buildRustPackage rec {
pname = "taplo-cli";
version = "0.4.1";
version = "0.5.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-bGQLAANVahpiiiKKJPNmtr4uT5iKHqyLS5yVm+rSHPg=";
sha256 = "sha256-+0smR1FDeJMSa/LaRM2M53updt5p8717DEaFItNXCdM=";
};
cargoSha256 = "sha256-T3fbG5HKOG90kawjQK8D0PIonB6ErNfR3hVIZ5N8zgA=";
cargoSha256 = "sha256-d7mysGYR72shXwvmDXr0oftSa+RtRoSbP++HBR40Mus=";
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;