aboutsummaryrefslogtreecommitdiff
path: root/server/Cargo.toml
blob: e8cb0ed971649cbdcb868415f0c617b0db194957 (plain)
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 = "hurrycurry-server"
version = "0.2.0"
edition = "2021"
default-run = "hurrycurry-server"

[dependencies]
glam = { version = "0.28.0", features = ["serde"] }
log = "0.4.22"
env_logger = "0.11.3"
anyhow = "1.0.86"
serde = { version = "1.0.204", features = ["derive"] }
tokio = { version = "1.38.0", features = ["full"] }
serde_json = "1.0.120"
tokio-tungstenite = "0.23.1"
futures-util = "0.3.30"
serde_yaml = "0.9.34+deprecated"
rand = "0.9.0-alpha.1"
shlex = "1.3.0"
clap = { version = "4.5.8", features = ["derive"] }
fake = "2.9.2"
pollster = "0.3.0"

hurrycurry-protocol = { path = "protocol" }