mockser 0.1.3

Configurable mock server for testing and development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DEFAULT_GOAL := all

.PHONY: all
all: fmt check test

.PHONY: check
check:
	cargo +nightly fmt --all -- --check
	cargo clippy --all-features --all-targets -- -D warnings

.PHONY: test
test:
	cargo test

.PHONY: fmt
fmt:
	cargo +nightly fmt --all