vsdb_hash_db 5.0.0

An implementation of the `hash_db::HashDB` trait
Documentation
all: fmt lint

fmt:
	cargo +nightly fmt

lint:
	cargo clippy --workspace
	cargo clippy --workspace --tests
	@ # cargo clippy --workspace --examples
	@ # cargo clippy --workspace --features="benchmark"

musl_lint:
	if [ `uname -s` = "Linux" ]; then \
		cargo clippy --workspace --target=x86_64-unknown-linux-musl; \
	fi

test:
	cargo test --workspace -- --nocapture

update:
	rustup update stable
	cargo update

clean:
	cargo clean