Merge pull request #192621 from figsoda/update-cargo-depgraph

cargo-depgraph: 1.2.5 -> 1.3.0
This commit is contained in:
Mario Rodas 2022-09-24 09:18:43 -05:00 committed by GitHub
commit b725158027
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,15 @@
{ lib, rustPlatform, fetchFromSourcehut }:
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "cargo-depgraph";
version = "1.2.5";
version = "1.3.0";
src = fetchFromSourcehut {
owner = "~jplatte";
repo = pname;
rev = "v${version}";
sha256 = "sha256-ewlrxxHnsXBWSMPAlxTfrHj23jMiThkDSJhEsChO/sM=";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-mlbS9EI/ltxnWfpci9hK9QwYpA/nII+wc2IRSHrmNGI=";
};
cargoSha256 = "sha256-Ce13vJ5zE63hHVkg/WFdz3LrASj7Xw6nqOO64uALOeQ=";
cargoSha256 = "sha256-9CKFZmkFiip6iQVkBmy/XoMEoyMhlKNRyI8oDHaAILc=";
meta = with lib; {
description = "Create dependency graphs for cargo projects using `cargo metadata` and graphviz";