mev-builders 0.1.3

MEV builder endpoints, all in one place
Documentation
.PHONY: build run test clean fmt fmt-check clippy taplo taplo-check deny-check pre-release

build:
	cargo build --all

release:
	cargo build --release

run:
	cargo run

test:
	cargo test

clean:
	cargo clean

fmt:
	cargo fmt

fmt-check:
	cargo fmt --all --check

clippy:
	cargo clippy --all --all-features -- -D warnings

taplo:
	taplo format

taplo-check:
	taplo format --check

deny-check:
	cargo deny --all-features check

.PHONY: pre-release
pre-release:
	make fmt
	make clippy
	make test
	make taplo
	make deny-check