2022-12-03T11:44:29 cargo-release 0.23.1 -> 0.24.0 https://repology.org/metapackage/cargo-release/versions 2022-12-03T11:44:32 attrpath: cargo-release 2022-12-03T11:44:32 Checking auto update branch... 2022-12-03T11:44:32 No auto update branch exists 2022-12-03T11:44:32 Old version 0.23.1" not present in master derivation file with contents: { lib , stdenv , rustPlatform , fetchFromGitHub , Security , curl , openssl , pkg-config }: rustPlatform.buildRustPackage rec { pname = "cargo-release"; version = "0.24.0"; src = fetchFromGitHub { owner = "crate-ci"; repo = "cargo-release"; rev = "v${version}"; sha256 = "sha256-+sMlbihareVn//TaCTEMU0iDnboneRhb8FcPmY0Q04A="; }; cargoSha256 = "sha256-MqS8jSjukZfD86onInFZJOtI5ntNmpb/tvwAil2rAZA="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security curl ]; meta = with lib; { description = ''Cargo subcommand "release": everything about releasing a rust crate''; homepage = "https://github.com/sunng87/cargo-release"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ gerschtli ]; }; }