Rust crate for calculating multiplayer rating based on elo ranking system
If you are on Rust 1.62 or higher use cargo add
to install the latest version:
sh
cargo add elo-multiplayer
Alternatively, you can add the following to your Cargo.toml
file manually:
toml
[dependencies]
elo-multiplayer = "0.1.4"
```rust use elo_multiplayer::EloRank;
fn main() {
let players: Vec
```