45 releases (27 stable)

new 24.4.0 Apr 22, 2024
24.3.0 Mar 24, 2024
24.2.1 Feb 25, 2024
23.12.2 Dec 23, 2023
0.0.4 Nov 11, 2021

#39 in Testing

Download history 78/week @ 2024-01-01 160/week @ 2024-01-08 290/week @ 2024-01-15 343/week @ 2024-01-22 758/week @ 2024-01-29 1185/week @ 2024-02-05 732/week @ 2024-02-12 618/week @ 2024-02-19 512/week @ 2024-02-26 204/week @ 2024-03-04 1576/week @ 2024-03-11 2388/week @ 2024-03-18 1646/week @ 2024-03-25 1417/week @ 2024-04-01 1571/week @ 2024-04-08 2724/week @ 2024-04-15

7,594 downloads per month

MIT license

270KB
6K SLoC

cargo-mutants

https://github.com/sourcefrog/cargo-mutants

Tests crates.io libs.rs GitHub Sponsors

cargo-mutants helps you improve your program's quality by finding places where bugs could be inserted without causing any tests to fail.

Coverage measurements can be helpful, but they really tell you what code is reached by a test, and not whether the test really checks anything about the behavior of the code. Mutation tests give different information, about whether the tests really check the code's behavior.

The goal of cargo-mutants is to be easy to run on any Rust source tree, and to tell you something interesting about areas where bugs might be lurking or the tests might be insufficient.

The main documentation is the user guide at https://mutants.rs/.

Prerequisites

cargo-mutants can help on trees with non-flaky tests that run under cargo test or cargo nextest run.

Install

cargo install --locked cargo-mutants

You can also install using cargo-binstall or from binaries attached to GitHub releases.

Quick start

From within a Rust source directory, just run

cargo mutants

To generate mutants in only one file:

cargo mutants -f src/something.rs

Integration with CI

The manual includes instructions and examples for automatically testing mutants in CI, including incremental testing of pull requests and full testing of the development branch.

Help advance cargo-mutants

If you use cargo-mutants or just like the idea you can help it get better:

Project status

As of January 2024 this is an actively-maintained spare time project. I expect to make releases about every one or two months.

It's very usable at it is and there's room for lots more future improvement, especially in adding new types of mutation.

This software is provided as-is with no warranty of any kind.

Further reading

See also:

Dependencies

~16–28MB
~414K SLoC