2025-07-08 22:50:42 +08:00
|
|
|
[package]
|
|
|
|
name = "server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2024"
|
|
|
|
description = "The game server."
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
chrono = "0.4"
|
|
|
|
colored = "3"
|
|
|
|
log = "0.4"
|
2025-07-13 15:44:55 +08:00
|
|
|
# The prost version must match with that of tonic, or the building will fail.
|
|
|
|
prost = "0.13"
|
2025-07-10 18:27:09 +08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2025-07-13 15:44:55 +08:00
|
|
|
tonic = "0.13"
|
2025-07-14 17:19:30 +08:00
|
|
|
tonic-web = "0.13"
|
2025-07-13 15:44:55 +08:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tonic-build = "0.13"
|