feat: Implement state persistence by serializing game and user data to state.json using serde_json.

This commit is contained in:
2025-12-03 14:40:05 +01:00
parent f9a4dd0851
commit 434eef5e1c
5 changed files with 104 additions and 29 deletions
+3 -1
View File
@@ -9,9 +9,11 @@ prost-types = "0.14.1"
rocket = { git = "https://github.com/rwf2/Rocket", rev = "504efef179622df82ba1dbd37f2e0d9ed2b7c9e4" }
bytes = "1"
rocket_prost_responder_derive = { path = "rocket_prost_responder_derive" }
uuid = { version = "1.10.0", features = ["v4"] }
uuid = { version = "1.19.0", features = ["v4"] }
bcrypt = "0.17.1"
bincode = "2.0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[build-dependencies]
prost-build = "0.14.1"