cargo-tarpaulin 0.25.1 -> 0.25.2 https://github.com/xd009642/tarpaulin/releases attrpath: cargo-tarpaulin Checking auto update branch... No auto update branch exists Old version 0.25.1" 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.25.2"; src = fetchFromGitHub { owner = "xd009642"; repo = "tarpaulin"; rev = version; sha256 = "sha256-EJb9IVQClZwJrIorJ6FM6gDV5oSeXiwbwG9l6+4fMQ8="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ curl Security ]; cargoHash = "sha256-WnvMLi0GeeLsmHDxH0tGAQfX//x9GD2cd/m7Tp/GLGA="; #checkFlags = [ "--test-threads" "1" ]; doCheck = false; meta = with lib; { description = "A code coverage tool for Rust projects"; homepage = "https://github.com/xd009642/tarpaulin"; license = with licenses; [ mit /* or */ asl20 ]; maintainers = with maintainers; [ hugoreeves ]; }; }