scroll.server/services/game-service/Cargo.toml
scroll 812052bc3e initial import, client gets to the lobby
titan engine, logic model, auth/game/gateway services.
csv tables pulled out of the ipa are checked in so it runs out of the box.
2026-08-23 07:50:31 +03:00

25 lines
653 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"
[dev-dependencies]