filecheck 0.2.1

Library for writing tests for utilities that read text files and produce text output
Documentation
#!/bin/bash
set -euo pipefail

# Format all sources using rustfmt.

cd $(dirname "$0")

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

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