From 80fedbd3fc838bdeef5e27e715342ff8d2f535f1 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 6 Nov 2020 09:34:33 +0100 Subject: [PATCH] Check wasm32 target in check.sh --- check.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/check.sh b/check.sh index f9bfec2e..fe5229a1 100755 --- a/check.sh +++ b/check.sh @@ -6,6 +6,7 @@ cargo fmt --all -- --check CARGO_INCREMENTAL=0 cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all #-W clippy::pedantic -W clippy::restriction -W clippy::nursery cargo test --workspace --all-targets --all-features +cargo check -p demo_web --target wasm32-unknown-unknown # For finding bloat: # cargo bloat --release --bin demo_glium -n 200 | rg egui