insta 0.1.2

A snapshot testing library for Rust
Documentation
all: test

build:
	@cargo build --all-features

doc:
	@cargo doc --all-features

test: cargotest

cargotest:
	@cargo test --all-features

format:
	@rustup component add rustfmt 2> /dev/null
	@cargo fmt

format-check:
	@rustup component add rustfmt 2> /dev/null
	@cargo fmt -- --check

lint:
	@rustup component add clippy 2> /dev/null
	@cargo clippy

.PHONY: all doc test cargotest format format-check lint