#!/bin/sh

# format all rust files
cargo fmt --message-format short | \
	xargs -r git add # readd changed files to staging

exit 0
