wasmparser 0.10.1

A simple event-driven library for parsing WebAssembly binary files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Format all sources using rustfmt.

# Exit immediately on errors.
set -e

cd $(dirname "$0")
src=$(pwd)

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

for crate in $(find "$src" -name Cargo.toml); do
    cd $(dirname "$crate")
    cargo fmt -- "$@"
done