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

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"