run:
	cargo run "./src/input.txt" "./src/output.json"

fmt:
	cargo fmt

clippy:
	cargo clippy

test:
	cargo test

build:
	cargo build

all: fmt clippy test build
