superstruct 0.10.0

Versioned data types with minimal boilerplate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
docs:
	rm -rf $@
	cargo doc --examples
	mdbook build book
	mkdir -p $@
	cp -r book/book/* $@
	cp -r target/doc $@/rustdoc

clean:
	rm -rf docs

.PHONY: docs clean