.PHONY: build test check doc lint help
build:
cargo build -p common
test:
cargo test -p common
check:
cargo check -p common
doc:
cargo doc -p common --no-deps --open
lint:
cargo clippy -p common -- -D warnings
help:
@echo "Available targets:"
@echo " build - Build the crate"
@echo " test - Run tests"
@echo " check - Check for compilation"
@echo " doc - Generate documentation"
@echo " lint - Run clippy lints"