httpmock 0.7.0

HTTP mocking library for Rust
Documentation
.PHONY: build
build:
	cargo build

.PHONY: test-local
test-local:
	cargo test

.PHONY: test-remote
test-local:
	cargo test --features=remote

.PHONY: test-standalone
test-standalone:
	cargo test --features standalone

.PHONY: test-all
test-all:
	cargo test --all-features

.PHONY: build-docker
build-docker:
	docker build .