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.
23 lines
635 B
TOML
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"
|