Skip to content

Commit

Permalink
cargo-generate: 0.21.3 -> 0.22.0 (#350871)
Browse files Browse the repository at this point in the history
  • Loading branch information
turboMaCk authored Oct 24, 2024
2 parents a1071d0 + 03a5e94 commit 0d43af9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/tools/rust/cargo-generate/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-generate";
version = "0.21.3";
version = "0.22.0";

src = fetchFromGitHub {
owner = "cargo-generate";
repo = "cargo-generate";
rev = "v${version}";
sha256 = "sha256-1F/865UgdqwfpITFhXCuL7CmducL7w0lVDyfui9UzjU=";
sha256 = "sha256-oiXv6MbQpmWFi2cTN3a1Zx7Bjr0Y+f6/O+0FQNidbBg=";
};

cargoHash = "sha256-szPO1V09EThpo2N03Ll+ZJUpvjp2b+/C/sviOzFfG+k=";
cargoHash = "sha256-8yLGxydU7jjoG13I+h7qjtabcCxzjnEiE8tAbH56pp4=";

nativeBuildInputs = [ pkg-config ];

Expand All @@ -44,6 +44,11 @@ rustPlatform.buildRustPackage rec {
# - should_canonicalize: the test assumes that it will be called from the /Users/<project_dir>/ folder on darwin variant.
checkFlags = [
"--skip=favorites::favorites_default_to_git_if_not_defined"
"--skip=git_instead_of::should_read_the_instead_of_config_and_rewrite_an_git_at_url_to_https"
"--skip=git_instead_of::should_read_the_instead_of_config_and_rewrite_an_ssh_url_to_https"
"--skip=git_over_ssh::it_should_retrieve_the_private_key_from_ssh_agent"
"--skip=git_over_ssh::it_should_support_a_public_repo"
"--skip=git_over_ssh::it_should_use_a_ssh_key_provided_by_identity_argument"
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
"--skip=git::utils::should_canonicalize"
];
Expand Down

0 comments on commit 0d43af9

Please sign in to comment.