concurrent-initializer 0.5.1

A rust library of concurrent initializer to ensure initialization only once per key.
Documentation
.PHONY : compile test clean

CARGO=cargo
CARGO_NIGHTLY=rustup run nightly cargo

compile:
	${CARGO} build --color=always --all --all-targets

release:
	${CARGO} build --release --color=always --all --all-targets

test:
	RUST_BACKTRACE=1 ${CARGO} test -- --nocapture

fmt:
	${CARGO_NIGHTLY} fmt

clean:
	${CARGO} clean