heapnotize 1.1.0

A smart pointer type for memory allocation on the stack.
Documentation
.PHONY: all
all: format lint check test

.PHONY: format
format:
	cargo fmt

.PHONY: lint
lint:
	cargo clippy

.PHONY: check
check:
	cargo check
	cargo check --examples

.PHONY: test
test:
	cargo test