wasmparser 0.39.2

A simple event-driven library for parsing WebAssembly binary files.
Documentation
#!/bin/bash
set -euo pipefail

# Format all sources using rustfmt.

topdir=$(dirname "$0")
cd "$topdir"

# Make sure we can find rustfmt.
export PATH="$PATH:$HOME/.cargo/bin"

exec cargo +stable fmt --all -- "$@"