cargo-coverage-gate 0.4.0

A cargo subcommand that gates pull requests on per-package line coverage measured by cargo-llvm-cov
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# cargo-coverage-gate — AI Agents Guidelines

Inherits everything from the workspace-root `AGENTS.md`. Additions below
are specific to this crate.

## Mutation Testing

`cargo-mutants` runs in CI against this crate. Before claiming a change
is done, prefer adding direct unit tests for any private helper whose
arithmetic, comparisons, or branch conditions would otherwise only be
exercised through wider integration tests — those are the mutants the
runner catches most often, and surviving mutants block the build.

`#[mutants::skip]` is acceptable on functions where the mutant set is
genuinely uninteresting (e.g. trivial delegations), but justify the
attribute in a comment.