Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
version: [stable, nightly, "1.78"]
version: [stable, nightly, "1.89"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
148 changes: 34 additions & 114 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/sourcefrog/cargo-mutants"
homepage = "https://mutants.rs/"
categories = ["development-tools::testing"]
keywords = ["testing", "mutants", "cargo", "mutation-testing", "coverage"]
rust-version = "1.78"
rust-version = "1.89"

[package.metadata.wix]
upgrade-guid = "CA7BFE8D-F3A7-4D1D-AE43-B7749110FA90"
Expand All @@ -34,6 +34,7 @@ color-print = "0.3"
console = "0.15"
ctrlc = { version = "3.4", features = ["termination"] }
fastrand = "2"
flickzeug = "0.4"
fs2 = "0.4"
globset = "0.4.16"
ignore = "0.4.23"
Expand All @@ -44,7 +45,6 @@ jobserver = "0.1"
mutants = "0.0.3"
nextest-metadata = "0.12.1"
num_cpus = "1.16"
patch = "0.7"
path-slash = "0.2"
quote = "1.0.35"
regex = "1.10"
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@

- New: Added a `name` field in the JSON representation of mutants. Thanks to @0xLoopTheory.

- Changed: Minimum supported Rust version increased to 1.89.

- Fixed: Fix build on musl by disabling, for now, reflink copies.

- Fixed: Don't error on diffs that contain only git file moves, by moving to Flickzeug. Thanks to @eirnym.

## 26.0.0 2025-12-07

- Changed: The default is now *not* to shuffle mutants: they run in the deterministic order they are generated in the source tree. This should give somewhat better locality of reference due to consecutively testing changes in each package or module. The previous behavior can be restored with `--shuffle`.
Expand Down
Loading