pbbson 0.2.4

Utilities for pbjson to BSON conversion
.PHONY: build
build: fmt
	cargo build


.PHONY: check
check:
	cargo clippy -- --no-deps --deny clippy::unwrap_used --deny warnings
	cargo machete
	cargo test --tests -- --show-output --test-threads=1


.PHONY: fmt
fmt:
	cargo fmt --all


.PHONY: clean
clean:
	cargo clean


.PHONY: outdated
outdated:
	cargo install --locked cargo-outdated
	cargo outdated -R