enum-repr 0.2.6

Derive enum repr conversions compatible with type aliases.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ifeq ($(TRAVIS),true)
  BUILD_DIR := $(TRAVIS_BUILD_DIR)
else
  BUILD_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))../
endif

TARGETS := nostdtest

default: $(TARGETS)
.PHONY: $(TARGETS)

nostdtest:
	cd $(BUILD_DIR)/test/nostdtest && \
	cargo build

clean:
	bash -c "rm -rf $(BUILD_DIR)/test/*/{Cargo.lock,target/}"