scroll.server/crates/auth-service/Cargo.toml
WiseDev ad5a1613e3 move players and accounts into postgres
json stores are gone, they nulled out every data ref on load and wrote the null straight back on save.
shop json and the purchase commands ended up in here too.
2026-08-23 08:40:13 +03:00

22 lines
563 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 }
storage = { 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"