client/server

This commit is contained in:
2026-07-24 14:07:18 +02:00
parent 520e9a1320
commit 730855ae5d
22 changed files with 507 additions and 6199 deletions
+19
View File
@@ -0,0 +1,19 @@
[package]
name = "audiopoker_client"
version = "0.1.0"
edition = "2024"
[dependencies]
audiopoker_core = { path = "../core" }
bevy = { version = "0.19", features = ["webgl2"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# wasm-bindgen/web-sys/js-sys/futures: aktuell nur für audio::tts (Web Speech
# API) genutzt. Werden zusätzlich gebraucht, sobald der Client per
# web_sys::WebSocket an den `server` (siehe ../server) angebunden wird -
# das ist noch offen, siehe PLAN.md.
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["SpeechRecognition", "SpeechSynthesis", "SpeechSynthesisUtterance", "Window", "HtmlInputElement", "console", "WebSocket", "MessageEvent"] }
js-sys = "0.3"
futures = "0.3"
rand = "0.8.5"