scroll.server/services/scroll-server/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

23 lines
635 B
TOML

[package]
name = "scroll-server"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Single process supervisor that runs the auth, game and gateway services together"
[dependencies]
titan = { workspace = true }
logic = { workspace = true }
service-rpc = { workspace = true }
auth-service = { workspace = true }
game-service = { workspace = true }
gateway = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
[[bin]]
name = "scroll-server"
path = "src/main.rs"