SHELL := /bin/bash

fmt:
	reset
	cargo fmt $(args)

test:
	reset
	cargo test $(args)

clippy:
	reset
	cargo clippy $(args)
