scroll.server/services/game-service/Cargo.toml
scroll 20a75dbb25 nuke the tests and the dead code
data/ is runtime state, keep it out of git.
2026-08-23 07:51:04 +03:00

23 lines
633 B
TOML

[package]
name = "game-service"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Home and avatar state service that produces scroll lobby payloads"
[dependencies]
titan = { workspace = true }
logic = { workspace = true, features = ["serde"] }
service-rpc = { workspace = true }
tokio = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
rand = { workspace = true }
async-trait = { workspace = true }
[[bin]]
name = "game-service"
path = "src/main.rs"