1
2
3
4
5
6
7
8
9
#![warn(missing_docs)]

//! # Skill rating systems in Rust
//! 
//! skill-rating aims to make the calculation of rating changes easier.
//! With various systems.
//! Currently ony the ELO system is implemented, glicko will come later.

pub mod elo;