use channels for comms (#9)

this  refactors the app setup and messaging modules
This commit is contained in:
Akash Shakdwipeea
2025-08-20 21:58:09 +05:30
committed by GitHub
parent ba2d1c064b
commit 3b81926ae1
22 changed files with 981 additions and 900 deletions
+14 -1
View File
@@ -7,16 +7,22 @@ edition = "2021"
[lib]
crate-type = ["cdylib"]
[features]
default = []
atomics = []
bulk-memory = []
[profile.release]
opt-level = "z"
lto = true
[dependencies]
wasm-bindgen = "0.2.100"
wasm-bindgen = { version = "0.2.100", features = ["enable-interning"] }
wasm-bindgen-futures = "0.4.50"
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
log = "0.4.27"
wasm-logger = "0.2.0"
web-sys = { version = "0.3.77", features = [
"Window",
"Document",
@@ -39,3 +45,10 @@ bytemuck = { version = "1.23.1", features = [
cgmath = "0.18"
raw-window-handle = "0.6.2"
wgpu = "26.0.1"
[dependencies.gltf]
version = "1.4"
features = ["extras", "names"]
[package.metadata.wasm-pack.profile.release]
wasm-opt = false