ini-parser 0.1.2

This tool was developed as a part of the Rust course at National University of "Kyiv-Mohyla Academy".
Documentation
# Variables
BINARY_NAME := ini_parser
SRC := src
LIB := lib.rs
MAIN := main.rs

# Commands
run:
	@cargo run -- $(ARGS)

build:
	@cargo build --release

test:
	@cargo test -- --nocapture

format:
	@cargo fmt

lint:
	@cargo clippy

pre-commit: format lint test
	@echo "All checks passed!"

clean:
	@cargo clean

doc:
	@cargo doc --open

release: pre-commit
	@cargo build --release

# Helper command to display available Makefile targets
help:
	@echo "Makefile commands:"
	@echo "  run         - Run the program, e.g. make run ARGS=\"parse --file examples/test.ini\""
	@echo "  build       - Build the project"
	@echo "  test        - Run tests"
	@echo "  format      - Format the code"
	@echo "  lint        - Lint the code using Clippy"
	@echo "  pre-commit  - Run formatting, linting, and tests before committing"
	@echo "  clean       - Clean up build artifacts"
	@echo "  doc         - Generate and open documentation"
	@echo "  release     - Build the project in release mode with checks"