itertools 0.3.3

Extra iterator adaptors, iterator methods and macros.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

docs: VERSION
	cargo doc --no-deps
	rm -rf ./doc
	cp -r ./target/doc ./doc
	# Put in the crate version into the docs
	find ./doc -name "*.html" -exec sed -i -e "s/<title>\(.*\) - Rust/<title>itertools $(shell cat VERSION) - \1 - Rust/g" {} \;

VERSION: Cargo.toml
	cargo pkgid | sed -e "s/.*#//" > VERSION

.PHONY: docs