# cargo-mutants configuration
# https://mutants.rs/configuration.html
# Use cargo-nextest for faster parallel test runs
= "nextest"
# Multiply the auto-detected baseline test time by 2x for per-mutation timeout.
# The baseline (~full nextest run) is measured automatically on first run.
= 2.0
# Absolute floor: no mutation gets less than 30 seconds regardless of baseline.
= 30.0
# Exclude pure data lookup tables — no control flow here, mutations just corrupt
# precomputed reference values without revealing logic gaps.
= [
"src/lookups/**",
"src/arrays/**",
]