mirror of
https://git.neonteam.dev/amizing/robinsr.git
synced 2025-03-12 03:28:30 -04:00
39 lines
639 B
TOML
39 lines
639 B
TOML
[package]
|
|
name = "gameserver"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
# Framework
|
|
tokio.workspace = true
|
|
|
|
# JSON
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
# Logging
|
|
tracing.workspace = true
|
|
ansi_term.workspace = true
|
|
env_logger.workspace = true
|
|
|
|
# Encoding / Serialization
|
|
prost.workspace = true
|
|
rbase64.workspace = true
|
|
|
|
# Cryptography
|
|
rand.workspace = true
|
|
|
|
# Utilities
|
|
paste.workspace = true
|
|
notify.workspace = true
|
|
notify-debouncer-mini.workspace = true
|
|
|
|
# Error handling
|
|
anyhow.workspace = true
|
|
|
|
# Local
|
|
mhy-kcp.workspace = true
|
|
common.workspace = true
|
|
proto.workspace = true
|
|
proto-derive.workspace = true
|