xdy 0.9.0

Complex RPG dice expression evaluator with histogram support.
1
2
3
4
5
6
7
8
9
10
11
# Run the benchmarks, which requires defining the `bench` feature.
bench:
	cargo bench -F bench

# Produce and view code coverage reports.
coverage:
	cargo +nightly llvm-cov --html --branch --open

# Run mutation tests.
mutants:
	cargo mutants -j8