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.
21 lines
532 B
TOML
21 lines
532 B
TOML
[package]
|
|
name = "auth-service"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Account identity and session issuing service"
|
|
|
|
[dependencies]
|
|
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 = "auth-service"
|
|
path = "src/main.rs"
|