2022-11-18T08:04:34 cargo-release 0.23.0 -> 0.23.1 https://repology.org/metapackage/cargo-release/versions 2022-11-18T08:04:37 attrpath: cargo-release 2022-11-18T08:04:37 Checking auto update branch... 2022-11-18T08:04:37 No auto update branch exists 2022-11-18T08:04:38 Old version 0.23.0" 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.23.1"; src = fetchFromGitHub { owner = "crate-ci"; repo = "cargo-release"; rev = "v${version}"; sha256 = "sha256-C5m1mRpkMCeR4TCbaFvH+5Jyko9RGP9OMi+HJx5AIZg="; }; cargoSha256 = "sha256-Nuc/kJdAOX1SDynZQNTvq7QJq1kYD/6TuEYonUhPVuU="; 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 ]; }; }