#!/usr/bin/env bash

set -eu

echo "Linting for wasm32 compatibility"

rustup component add clippy

cargo clippy --target=wasm32-unknown-unknown -- --deny warnings
