enum-conversion 0.0.1

A set of traits and macros for deriving conversion traits between enums and the types in their variants.
Documentation
cargo := $(env) cargo
nightly := nightly-2022-05-20


build:
	$(cargo) build

clippy:
	$(cargo) +$(nightly) clippy --all-targets -- -D warnings

check:
	$(cargo) check

fmt:
	$(cargo) +$(nightly) fmt --all

test:
	cd enum-conversion-derive && \
	$(cargo) test && \
	cd .. && \
	$(cargo) test

expand:
	cargo +$(nightly) expand