binlog 0.1.0

A graph database library
Documentation
export RUST_BACKTRACE=1

.PHONY: test fuzz check fmt

test:
	cargo test --all-features

fuzz:
	cargo +nightly fuzz run compare

check:
	cargo +stable check --all-features
	cargo +nightly check --all-features
	cd fuzz && cargo +stable check
	cd python && cargo +stable check
	cargo +stable clippy --all-features
	cargo fmt -- --check

fmt:
	cargo fmt
	cd fuzz && cargo fmt
	cd python && cargo fmt