Files

39 lines
639 B
TOML
Raw Permalink Normal View History

2024-03-29 09:46:31 +03:00
[package]
name = "gameserver"
2025-02-26 21:37:34 +07:00
edition = "2024"
2024-03-29 09:46:31 +03:00
version.workspace = true
[dependencies]
2025-03-09 05:09:09 +07:00
# Framework
tokio.workspace = true
2024-03-29 09:46:31 +03:00
2025-03-09 05:09:09 +07:00
# JSON
2024-03-29 09:46:31 +03:00
serde.workspace = true
serde_json.workspace = true
2025-03-09 05:09:09 +07:00
# Logging
2024-03-29 09:46:31 +03:00
tracing.workspace = true
2025-03-09 05:09:09 +07:00
ansi_term.workspace = true
env_logger.workspace = true
2024-03-29 09:46:31 +03:00
2025-03-09 05:09:09 +07:00
# Encoding / Serialization
2024-03-29 09:46:31 +03:00
prost.workspace = true
2025-03-09 05:09:09 +07:00
rbase64.workspace = true
2024-03-29 21:13:12 +07:00
2025-03-09 05:09:09 +07:00
# Cryptography
2024-03-29 21:13:12 +07:00
rand.workspace = true
2025-03-09 05:09:09 +07:00
# Utilities
paste.workspace = true
notify.workspace = true
notify-debouncer-mini.workspace = true
# Error handling
anyhow.workspace = true
# Local
2025-02-26 21:37:34 +07:00
mhy-kcp.workspace = true
common.workspace = true
2025-03-09 05:09:09 +07:00
proto.workspace = true
proto-derive.workspace = true