mvx 0.2.5

Enhanced file and directory move utility with progress bars and cross-device support
Documentation
.PHONY: all fmt clippy test install

# Default target that runs all checks
all: fmt clippy test

# Format the code
fmt:
	cargo fmt --all -- --check

# Run clippy for linting
clippy:
	cargo clippy -- -W clippy::pedantic -D warnings

# Run tests
test:
	cargo test

# Install the binary
install:
	cargo install --path .