Proof of concept of launching Minecraft from Rust

This commit is contained in:
Jai A
2021-07-04 22:46:56 -07:00
parent 93418edbe7
commit a0e35ad853
11 changed files with 1324 additions and 71 deletions

View File

@@ -13,7 +13,7 @@ reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = "0.8"
uuid = { version = "0.8", features = ["serde", "v4"] }
bytes = "1"
zip = "0.5"
@@ -21,4 +21,6 @@ regex = "1.5"
lazy_static = "1.4"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
futures = "0.3"
sys-info = "0.9.0"