summaryrefslogtreecommitdiff
path: root/server/replaytool
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-08 17:19:25 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-08 17:19:25 +0200
commit90f42ec7a3f28fb3a87c233a81e8f65de832983e (patch)
treedba1334af5bb711555add7159874d1eabd89a4db /server/replaytool
parent70bb8744cd742dc6c8a71ab174e4a1b058c7bec8 (diff)
downloadhurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar
hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.bz2
hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.zst
move glam dep to protocol crate
Diffstat (limited to 'server/replaytool')
-rw-r--r--server/replaytool/Cargo.toml10
-rw-r--r--server/replaytool/src/main.rs4
2 files changed, 13 insertions, 1 deletions
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml
index 6983781d..16f8377a 100644
--- a/server/replaytool/Cargo.toml
+++ b/server/replaytool/Cargo.toml
@@ -4,4 +4,14 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+log = "0.4.22"
+env_logger = "0.11.3"
+anyhow = "1.0.86"
+serde = { version = "1.0.204", features = ["derive"] }
+tokio = { version = "1.38.0", features = ["full"] }
+serde_json = "1.0.120"
+tokio-tungstenite = "0.23.1"
+futures-util = "0.3.30"
+rand = "0.9.0-alpha.1"
+
hurrycurry-protocol = { path = "../protocol" }
diff --git a/server/replaytool/src/main.rs b/server/replaytool/src/main.rs
index 58dfaaa8..efdc36e0 100644
--- a/server/replaytool/src/main.rs
+++ b/server/replaytool/src/main.rs
@@ -1,3 +1,5 @@
-fn main() {
+
+#[tokio::main]
+async fn main() {
}