# Default target
.PHONY: help update

help:
	@echo "Usage:"
	@echo "help   - Display this help message."
	@echo "update  - Update the dependencies, especially rust bits."

update:
	uv sync --reinstall
