hyper-static 0.1.0

A static file handler for Rust/Hyper with minimal logic
Documentation
1
2
3
4
5
6
7
8
9
all:
	@echo "Select target"

doc:
	grep -v "^//!" src/lib.rs > src/lib.rs.tmp
	sed 's|^|//! |g' README.md > src/lib.rs
	cat src/lib.rs.tmp >> src/lib.rs
	rm -f src/lib.rs.tmp
	cargo doc