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.
24 lines
642 B
TOML
24 lines
642 B
TOML
[package]
|
|
name = "game-service"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Home and avatar state service that produces scroll lobby payloads"
|
|
|
|
[dependencies]
|
|
titan = { workspace = true }
|
|
logic = { workspace = true }
|
|
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 = "game-service"
|
|
path = "src/main.rs"
|