default: fmt clippy test

run file:
	cargo run -- file {{file}}

fmt:
	cargo fmt

clippy:
	cargo clippy

test:
	cargo test --workspace

update:
	git fetch
	git pull
	cargo update
