coman-cli 1.2.3

Coman is a simple API manager designed to streamline API management and request sending. Can be used as a library or CLI.
Documentation
build:
	cargo build

linux-release:
	cargo build --release

windows-release:
	cargo build --release --target x86_64-pc-windows-gnu

run:
	cargo run

# Maintenance commands
clean:
	@echo "๐Ÿงน Cleaning build artifacts..."
	cargo clean

# Code quality commands
clippy:
	@echo "๐Ÿ” Running Clippy..."
	cargo clippy --all-targets --all-features -- -D warnings

fmt:
	@echo "๐Ÿ“ Formatting code..."
	cargo fmt --all

fmt-check:
	@echo "๐Ÿ“ Checking code formatting..."
	cargo fmt --all -- --check	

test:
	./run-tests.sh