help:
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
test:
@cargo test --release
test-no-std:
@cargo test --release --no-default-features --features=rkyv-impl,rkyv/size_16 --no-run
no-std:
@rustup target add thumbv6m-none-eabi
@cargo build --release --no-default-features --target thumbv6m-none-eabi
clippy:
@cargo clippy --release -- -D warnings
@cargo clippy --release --no-default-features -- -D warnings
.PHONY: help test test-no-std no-std clippy