code-hasher 0.1.0

Tiny macro which generates associated constants based on the associated item content
Documentation
1
2
3
4
5
6
7
8
9
10
help: ## Display this help screen
	@grep -h \
		-E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
		awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

test: ## Perform the test of the code-hasher macro
	@cargo test \
		--release \

.PHONY: test help