summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMartin Hafskjold Thoresen <martin@vind.ai>2025-01-04 14:55:12 +0100
committerMartin Hafskjold Thoresen <martin@vind.ai>2025-01-04 14:55:12 +0100
commite6da55daa54cdf528af1f3e7617ca124ffee3159 (patch)
treecce79cb8fbc4b16a49352240e232a038037de1c3 /Cargo.toml
parent7a049d3acf49af248700e18568ee18ee9e99fc9c (diff)
downloadmusicgame-e6da55daa54cdf528af1f3e7617ca124ffee3159.tar.gz
musicgame-e6da55daa54cdf528af1f3e7617ca124ffee3159.zip
Skeleton of gameplay loop in place
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 11 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 634a60e..4b0600f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,12 +5,20 @@ edition = "2021"
[dependencies]
anyhow = "1.0.95"
-axum = "0.8.1"
+axum = { version = "0.8.1", features = ["ws"] }
axum-extra = "0.10.0"
axum-macros = "0.5.0"
+bytes = "1.9.0"
cookie = { version = "0.18.1", features = ["percent-encode"] }
maud = "0.26.0"
-tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread", "process", "time"] }
-tower-http = { version = "0.6.2", features = ["catch-panic", "trace"] }
+rand = "0.8.5"
+tokio = { version = "1.42.0", features = [
+ "macros",
+ "rt-multi-thread",
+ "process",
+ "time",
+] }
+tokio-tungstenite = "0.26.1"
+tower-http = { version = "0.6.2", features = ["catch-panic", "fs", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["tracing"] }