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.
22 lines
563 B
TOML
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"
|