overlap 0.0.2

A tool shows overlap text in files
Documentation
# vet

vet\:check:  ## Check rust syntax [alias: check]
	@cargo check --all -v
.PHONY: vet\:check

check: | vet\:check
.PHONY: check

vet\:format:  ## Check format without changes [alias: vet:fmt, format, fmt]
	@cargo fmt --all -- --check
.PHONY: vet\:format

vet\:fmt: | vet\:format
.PHONY: vet\:fmt

format: | vet\:format
.PHONY: format

fmt: | vet\:format
.PHONY: fmt

vet\:lint:  ## Check style using clippy [alias: lint]
	@cargo clippy --all-targets
.PHONY: vet\:lint

lint: | vet\:lint
.PHONY: lint

vet\:all: | vet\:check vet\:format vet\:lint  ## Check code using all vet:xxx targets [alias: vet]
.PHONY: vet\:all

vet: | vet\:all
.PHONY: vet

# test

test\:all:  ## Run unit tests and integration tests [alias: test]
	@cargo test --tests
.PHONY: test\:all

test: | test\:all
.PHONY: test

# coverage

coverage:  ## Generate coverage report of unit tests only for lib using kcov [alias: cov]
	@cargo test --lib overlap --no-run
	@./.tools/setup-kcov
	./.tools/get-covered overlap
.PHONY: coverage

cov: | coverage
.PHONY: cov

# document

document:  ## Generate documentation files [alias: doc]
	@cargo rustdoc -- -Z --display-warnings
.PHONY: document

doc: | document
.PHONY: doc

# build

build\:debug:  ## Run debug build [alias: build]
	cargo build
.PHONY: build\:debug

build: | build\:debug
.PHONY: build

build\:release:  ## Create release build
	cargo build --release
.PHONY: build\:release

# other utilities

clean:  ## Tidy up
	@cargo clean
.PHONY: clean

package:  ## Create package
	@cargo package
.PHONY: package

install:  ## Install overlap command into the directory same with cargo
	@cargo install --path . --force
.PHONY: install


help:  ## Display this message
	@grep -E '^[0-9a-z\:\\]+: ' $(MAKEFILE_LIST) | grep -E '  ## ' | \
	  sed -e 's/\(\s|\(\s[0-9a-z\:\\]*\)*\)  /  /' | tr -d \\\\ | \
	  awk 'BEGIN {FS = ":  ## "}; {printf "\033[38;05;222m%-13s\033[0m %s\n", $$1, $$2}' | \
	  sort
.PHONY: help

.DEFAULT_GOAL = test\:all
default: test\:all