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
|
[package]
name = "musicgame"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["ws"] }
axum-extra = { version = "0.10.0", features = ["cookie"] }
axum-macros = "0.5.0"
bytes = "1.9.0"
cookie = { version = "0.18.1", features = ["percent-encode"] }
maud = { version = "0.26.0", features = ["axum"] }
rand = "0.8.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = [
"macros",
"rt-multi-thread",
"process",
"time",
] }
tokio-tungstenite = "0.26.1"
tower-http = { version = "0.6.2", features = ["catch-panic", "fs", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["tracing"] }
|