erhant 0.1.4

My personal blog, hosted on docs.rs
Documentation
.PHONY: docs
docs:
	RUSTDOCFLAGS="--html-in-header styleheader.html" cargo doc --no-deps --open
	
.PHONY: build
build:
	cargo build

.PHONY: publish
publish:
	cargo publish

.PHONY: credentials
credentials:
	@cat ${HOME}/.cargo/credentials.toml

.PHONY: update-about
update-about:
	@cp ../README.md src/ABOUT.md
	@sed -i '' 's|https://github.com/erhant/erhant/labels/||g' src/ABOUT.md
	@echo "Copied and updated ABOUT.md"