-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
24 lines (20 loc) · 843 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "skillratings"
version = "0.27.1"
edition = "2021"
description = "Calculate a player's skill rating using algorithms like Elo, Glicko, Glicko-2, TrueSkill and many more."
readme = "README.md"
repository = "https://github.com/atomflunder/skillratings"
homepage = "https://github.com/atomflunder/skillratings"
documentation = "https://docs.rs/skillratings/"
license = "MIT OR Apache-2.0"
keywords = ["elo", "glicko", "trueskill", "multiplayer", "rating"]
categories = ["game-development", "algorithms", "mathematics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "bench_main"
harness = false