Merge pull request #223820 from figsoda/cargo-all-features

cargo-all-features: 1.7.0 -> 1.9.0
This commit is contained in:
Nick Cao 2023-03-30 09:45:57 +08:00 committed by GitHub
commit f53b6a348d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,18 @@
{ lib, rustPlatform, fetchFromGitHub }: { lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-all-features"; pname = "cargo-all-features";
version = "1.7.0"; version = "1.9.0";
src = fetchFromGitHub { src = fetchCrate {
owner = "frewsxcv"; inherit pname version;
repo = pname; hash = "sha256-OLnz1SmMLs/yats/lZugqNUlBQHSNR1bOuEmnHGdoN8=";
rev = version;
sha256 = "sha256-p9UQaqytqpD2u9X9zaTPIgVEloU2UbD/AxVERNs1Lt8=";
}; };
cargoSha256 = "sha256-krtuLFQlInqdv7j8v13/X3lL0JdaMsApb9Ga5muThgw="; cargoHash = "sha256-Gg5tF8IvbtIoqR0AKRS7IbcCNOCJO8oxwX0KkUr+l/M=";
meta = with lib; { meta = with lib; {
description = "A Cargo subcommand to build and test all feature flag combinations"; description = "A Cargo subcommand to build and test all feature flag combinations";