wincounter 0.1.6

Binary win counter that supports ties
Documentation

Build and Test Crates.io Version Rustdocs WASM

Win Counter

The library is designed to address a very specific problem found with reporting the results in games: How to do clearly store and report win percentages when you have x number of players, and they can each tie with any number of other players?

Setup

The default make runs the following tasks:

  • cargo fmt
  • cargo clean
  • cargo build
  • cargo nextest run (unit tests)
  • cargo test --doc (doc tests)
  • cargo clippy with clippy::pedantic lint settings
  • cargo check --target wasm32-unknown-unknown (WASM compatibility)
  • cargo doc --no-deps
❯ make

To open the generated docs in your browser:

❯ make docs