fmt:
	cargo fmt

clippy:
	cargo clippy -- -D warnings

test:
	cargo test

build:
	cargo build

run:
	cargo run -- "elements.txt"

all: fmt clippy test build
