prune-backup 0.1.0

Prune backup files based on retention policies, keeping recent files and moving old ones to trash
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 .