mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 15:13:12 -04:00
0.20 has a bunch of bugs that will be fixed by: * https://github.com/gfx-rs/wgpu/pull/5681 At Rerun, we don't want to wait for the wgpu 0.20.1 patch release before we update egui, so we will temporarily downgrade to wgpu 0.19 After reverting I'll open a new PR that will update to 0.20 again, with the intention of merging that once 0.20.1 is released.
11 lines
258 B
Bash
Executable File
11 lines
258 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/.."
|
|
|
|
# Pre-requisites:
|
|
rustup target add wasm32-unknown-unknown
|
|
|
|
# For generating JS bindings:
|
|
cargo install --quiet wasm-bindgen-cli --version 0.2.90
|