faketime 0.1.1

Fake time to ease testing and debugging
Documentation
test: faketime-test system-test

faketime-test:
	cargo test

system-test:
	RUSTDOCFLAGS="--cfg disable_faketime" RUSTFLAGS="--cfg disable_faketime" cargo test --verbose

doc:
	cargo doc --no-deps

fmt:
	cargo fmt -- --check

clippy:
	cargo clippy

ci: fmt clippy test
ci-quick: test

.PHONY: test faketime-test system-test doc
.PHONY: fmt clippy
.PHONY: ci ci-quick