script-macro 0.1.2

Write proc-macros inline with other source code
Documentation
1
2
3
4
5
6
7
8
9
10
11
test:
	cargo test
.PHONY: test

test-all-examples:
	set -eux -o pipefail; \
	for dir in ./example_crates/*/; do \
		(cd $$dir && cargo test); \
	done

.PHONY: test-all-examples