1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# Makefile for email_pest_parser run: cargo run $(args) build: cargo build test: cargo test format: cargo fmt clippy: cargo clippy -- -D warnings prepare: cargo fmt && cargo clippy && cargo test all: fmt clippy test build