rustless 0.9.0

Rustless is a REST-like API micro-framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
doc:
	git checkout gh-pages
	cargo doc
	cp -r target/doc doc
	git add --all
	msg="doc(*): rebuilding docs `date`"
	git commit -m "$msg"
	git push -f origin gh-pages
	git checkout master