From 4d6abe1c297e8db5d74aef98b05cb11e8906dcde Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 24 Nov 2024 12:46:37 -0800 Subject: [PATCH] Debug the build --- .github/workflows/build.yml | 3 +++ rust/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3bef7758a..5726e66d2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,6 +31,9 @@ jobs: - name: Install Node dependencies run: pnpm install + - name: Debug + run: echo "RUST_LOG=info" >> $GITHUB_ENV + - name: Run build run: pnpm run build diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a5abb2c85..2b93e2a99 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -27,7 +27,7 @@ lz4_flex = { version = "0.10.0", default-features = false, features = ["safe-dec lzma-rs = { version = "0.3.0", features = ["raw_decoder"] } naga = { git = "https://github.com/magcius/wgpu", branch = "issue-4349", features = ["glsl-in", "wgsl-out"] } num_enum = "0.5.7" -wasm-bindgen = "0.2.92" +wasm-bindgen = "0.2.95" web-sys = { version = "0.3.48", features = ["console"] } nalgebra-glm = "0.19.0" rand = "0.8.5"