Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ rustflags = [
"-C", "link-arg=--shared-memory",
"-C", "link-arg=--max-memory=4294967296",
"-C", "link-args=-z stack-size=10485760",
"-C", "link-arg=--import-memory",
"-C", "link-arg=--export=__wasm_init_tls",
"-C", "link-arg=--export=__tls_size",
"-C", "link-arg=--export=__tls_align",
"-C", "link-arg=--export=__tls_base",
]

[env]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
only-update-versions: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2025-06-03
toolchain: nightly-2025-12-31
target: wasm32-unknown-unknown
components: rust-src
override: true
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "webgpu_build"
# to build wasm lib:
# - copy ./assets to deploy/web/assets
# - copy ./crates/dcl/src/js/modules to deploy/web/modules
# - rustup default nightly # (tested with 2025-06-03)
# - rustup default nightly # (tested with 2025-12-31)
# - wasm-pack build --target web --out-dir ./deploy/web/pkg --no-default-features --features="livekit" && npx serve deploy/web

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/comms/src/livekit_web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ async fn handle_room_event(event: JsValue, transport_id: Entity, sender: Sender<
)
.await;
} else {
let res = sender
let _ = sender
.send(
NonPlayerUpdate {
transport_id,
Expand Down
Loading