RobinSR/gameserver/Cargo.toml
amizing25 de22105514 refactor: Refactor json loading mechanism & more
- Move json loading into separate crate `common`
- Add new http route for handling SRTools API
- Listen to `freesr-data.json` file change, and sync with client immediately
- Move json loading into `PlayerSession`, instead of load it everytime
- Implement global buff for Castorice
- Implement `GetBigDataAllRecommendCsReq`
2025-03-03 08:03:52 +07:00

37 lines
779 B
TOML

[package]
name = "gameserver"
edition = "2024"
version.workspace = true
[dependencies]
ansi_term.workspace = true
anyhow.workspace = true
atomic_refcell.workspace = true
env_logger.workspace = true
hex.workspace = true
lazy_static.workspace = true
paste.workspace = true
rbase64.workspace = true
notify.workspace = true
notify-debouncer-mini.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
tracing-futures.workspace = true
tracing-log.workspace = true
tracing-subscriber.workspace = true
tracing-bunyan-formatter.workspace = true
prost.workspace = true
proto.workspace = true
proto-derive.workspace = true
rand.workspace = true
mhy-kcp.workspace = true
common.workspace = true