2022-11-15T23:00:56 cargo-edit 0.11.5 -> 0.11.6 https://github.com/killercup/cargo-edit/releases 2022-11-15T23:00:59 attrpath: cargo-edit 2022-11-15T23:00:59 Checking auto update branch... 2022-11-15T23:00:59 No auto update branch exists 2022-11-15T23:00:59 Old version 0.11.5" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , openssl , zlib , stdenv , Security }: rustPlatform.buildRustPackage rec { pname = "cargo-edit"; version = "0.11.6"; src = fetchFromGitHub { owner = "killercup"; repo = pname; rev = "v${version}"; hash = "sha256-EGClr2HQ11bX6WTvu9ZxPo4hA0Q5Sl9t0Gw8/SltxDI="; }; cargoSha256 = "sha256-Ph6W2RyNjVfnkon4YyAi4VvQWt/McKelUzlRD15Yysk="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl zlib ] ++ lib.optionals stdenv.isDarwin [ Security ]; doCheck = false; # integration tests depend on changing cargo config meta = with lib; { description = "A utility for managing cargo dependencies from the command line"; homepage = "https://github.com/killercup/cargo-edit"; changelog = "https://github.com/killercup/cargo-edit/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ Br1ght0ne figsoda gerschtli jb55 killercup ]; }; }