mirror of
https://git.neonteam.dev/amizing/robinsr.git
synced 2025-03-12 03:28:30 -04:00
- 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`
33 lines
661 B
TOML
33 lines
661 B
TOML
[package]
|
|
name = "sdkserver"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
env_logger.workspace = true
|
|
|
|
tower-http = { workspace = true, features = ["cors"]}
|
|
axum.workspace = true
|
|
axum-server.workspace = true
|
|
|
|
lazy_static.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
|
|
ansi_term.workspace = true
|
|
|
|
prost.workspace = true
|
|
rbase64.workspace = true
|
|
proto.workspace = true
|
|
common.workspace = true
|