crate-git-revision 0.0.6

Embed git revision into crates built and published.
Documentation
all: check test

export RUSTFLAGS=-Dwarnings

doc: fmt
	cargo test --doc
	cargo doc --open

test: fmt
	cargo test

check: fmt
	cargo check

watch:
	cargo watch --clear --watch-when-idle --shell '$(MAKE)'

watch-doc:
	cargo +nightly watch --clear --watch-when-idle --shell '$(MAKE) doc'

fmt:
	cargo fmt --all

readme:
	cargo readme > README.md

clean:
	cargo clean