simple-http-server 0.6.13

Simple HTTP server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fmt:
	cargo fmt --all -- --check

clippy:
	cargo clippy --all --tests --all-features -- -F warnings

test: export RUST_BACKTRACE := full
test:
	RUSTFLAGS='-F warnings'  cargo test --all --all-features

ci: fmt clippy test
	git diff --exit-code Cargo.lock

.PHONY: fmt clippy test ci