moneylib 0.2.0

Library to deal with money in Rust.
Documentation

moneylib

Library to deal with money in Rust.

Code Coverage

This project maintains excellent code coverage.

To see current coverage results, run the coverage command below.

Running Code Coverage

To measure code coverage, you need to install cargo-tarpaulin:

cargo install cargo-tarpaulin

Then run coverage with:

cargo tarpaulin --out Stdout --out Html

This will:

  • Run all tests with coverage instrumentation
  • Display coverage results in the terminal
  • Generate an HTML report (tarpaulin-report.html) for detailed visualization