cargo-tarpaulin 0.25.2 -> 0.26.0 https://repology.org/project/cargo-tarpaulin/versions attrpath: cargo-tarpaulin Checking auto update branch... No auto update branch exists Old version 0.25.2" not present in master derivation file with contents: { lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, curl, openssl, Security }: rustPlatform.buildRustPackage rec { pname = "cargo-tarpaulin"; version = "0.26.0"; src = fetchFromGitHub { owner = "xd009642"; repo = "tarpaulin"; rev = version; sha256 = "sha256-xFoqg8Ci60ZW0cUtSJSIIpO9HK+89nSHQhw1YvKy6MI="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ curl Security ]; cargoHash = "sha256-YLROFEkTEhl6v6AidoEAyTtzDnJEBP6V30gVbxVjKvY="; doCheck = false; meta = with lib; { description = "A code coverage tool for Rust projects"; homepage = "https://github.com/xd009642/tarpaulin"; changelog = "https://github.com/xd009642/tarpaulin/blob/${src.rev}/CHANGELOG.md"; license = with licenses; [ mit /* or */ asl20 ]; maintainers = with maintainers; [ figsoda hugoreeves ]; }; }