cargo-edit 0.11.7 -> 0.11.8 https://repology.org/metapackage/cargo-edit/versions attrpath: cargo-edit Checking auto update branch... No auto update branch exists Old version 0.11.7" 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.8"; src = fetchFromGitHub { owner = "killercup"; repo = pname; rev = "v${version}"; hash = "sha256-v6EhYfdub4zuWX5oPzNWpqEgv0qoZujt00SCP+RoKfU="; }; cargoSha256 = "sha256-R7FFWVOpzQ/u/KVnJQuYwLmmqei2ZymP610XrA5HZr0="; 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 ]; }; }