build:
cargo build
linux-release:
cargo build --release
windows-release:
cargo build --release --target x86_64-pc-windows-gnu
run:
cargo run
clean:
@echo "๐งน Cleaning build artifacts..."
cargo clean
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