-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (39 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "cgarena"
version = "1.3.1"
edition = "2021"
authors = ["Yevhen Kazmin <gvoin16@gmail.com>"]
repository = "https://github.com/aangairbender/cgarena"
license = "MIT"
keywords = ["codingame"]
description = "Local bot arena with matchmaking, rating calculation and web ui."
include = ["/assets", "/cg-arena-ui/dist", "/migrations", "/src"]
[dependencies]
tokio = { version = "1.46", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] }
tracing = "0.1"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "std"] }
clap = { version = "4.5", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "chrono", "uuid"] }
thiserror = "2.0"
axum = "0.8"
mime = "0.3.17"
rand = "0.9"
tower-http = { version = "0.6", features = ["trace", "cors"] }
indoc = "2.0"
toml = "0.8"
itertools = "0.14"
skillratings = "0.27.1"
rust-embed = "8.7"
mime_guess = "2.0.5"
local-ip-address = "0.6.5"
nom = "8"
log = "0.4"
nalgebra = "0.34.1"
[dev-dependencies]
tempfile = "3.20"
assert_float_eq = "1.1.4"